update
This commit is contained in:
parent
6e93ffd5b5
commit
e6fc5c4161
66
stranky/David.html
Normal file
66
stranky/David.html
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css" />
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
|
||||||
|
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
|
||||||
|
crossorigin="anonymous" referrerpolicy="no-referrer">
|
||||||
|
<link rel="stylesheet" href="/global/global.css">
|
||||||
|
<script src="/global/global.js"></script>
|
||||||
|
<title>Slovanská mytológia</title>
|
||||||
|
</head>
|
||||||
|
<nav class="topnav container_menu" id="myTopnav">
|
||||||
|
<a href="/David" class="active">Dávid</a>
|
||||||
|
<a href="/Dano">Dano</a>
|
||||||
|
<a href="javascript:void(0);" class="icon" onclick="myFunction()">☰</a>
|
||||||
|
</nav>
|
||||||
|
<body>
|
||||||
|
<table border="5px" align="right">
|
||||||
|
<tr>
|
||||||
|
<th>Názov súboru</th>
|
||||||
|
<th>Typ súboru</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<a href="#"><td>SuperSubor</td></a>
|
||||||
|
<td><img src="#" alt="image"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<a href="#"><td>SuperSubor</td></a>
|
||||||
|
<td><img src="#" alt="image"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<a href="#"><td>SuperSubor</td></a>
|
||||||
|
<td><img src="#" alt="image"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<a href="#"><td>SuperSubor</td></a>
|
||||||
|
<td><img src="#" alt="image"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<a href="#"><td>SuperSubor</td></a>
|
||||||
|
<td><img src="#" alt="image"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<a href="#"><td>SuperSubor</td></a>
|
||||||
|
<td><img src="#" alt="image"></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<!--<form action="upload.php" method="post" enctype="multipart/form-data">
|
||||||
|
Select image to upload:
|
||||||
|
<input type="file" name="fileToUpload" id="fileToUpload">
|
||||||
|
<input type="submit" value="Upload Image" name="submit">
|
||||||
|
</form>
|
||||||
|
<!-- The data encoding type, enctype, MUST be specified as below -->
|
||||||
|
<!--<form enctype="multipart/form-data" action="__URL__" method="POST" enctype="multipart/form-data">
|
||||||
|
<!-- MAX_FILE_SIZE must precede the file input field -->
|
||||||
|
<!--<input type="hidden" name="MAX_FILE_SIZE" value="30000" />
|
||||||
|
<!-- Name of input element determines name in $_FILES array -->
|
||||||
|
<!--Send this file: <input name="userfile" type="file" />
|
||||||
|
<input type="submit" value="Send File" />-->
|
||||||
|
</form>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -1,31 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css" />
|
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
|
|
||||||
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
|
|
||||||
crossorigin="anonymous" referrerpolicy="no-referrer">
|
|
||||||
<link rel="stylesheet" href="/global/global.css">
|
|
||||||
<script src="/global/global.js"></script>
|
|
||||||
<title>Slovanská mytológia</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<form action="upload.php" method="post" enctype="multipart/form-data">
|
|
||||||
Select image to upload:
|
|
||||||
<input type="file" name="fileToUpload" id="fileToUpload">
|
|
||||||
<input type="submit" value="Upload Image" name="submit">
|
|
||||||
</form>
|
|
||||||
<!-- The data encoding type, enctype, MUST be specified as below -->
|
|
||||||
<form enctype="multipart/form-data" action="__URL__" method="POST" enctype="multipart/form-data">
|
|
||||||
<!-- MAX_FILE_SIZE must precede the file input field -->
|
|
||||||
<input type="hidden" name="MAX_FILE_SIZE" value="30000" />
|
|
||||||
<!-- Name of input element determines name in $_FILES array -->
|
|
||||||
Send this file: <input name="userfile" type="file" />
|
|
||||||
<input type="submit" value="Send File" />
|
|
||||||
</form>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Loading…
Reference in New Issue
Block a user