116 lines
2.9 KiB
HTML
116 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
<style>
|
|
body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
.navbar {
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
background-color: rgb(199, 199, 199);
|
|
overflow: auto;
|
|
}
|
|
|
|
.navbar a {
|
|
float: left;
|
|
font-size: 16px;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.dropdown {
|
|
float: left;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.dropdown .dropbtn {
|
|
font-size: 16px;
|
|
border: none;
|
|
outline: none;
|
|
color: white;
|
|
padding: 14px 16px;
|
|
background-color: inherit;
|
|
font-family: inherit;
|
|
margin-left: left;
|
|
}
|
|
|
|
.navbar a:hover, .dropdown:hover .dropbtn {
|
|
background-color: red;
|
|
}
|
|
|
|
.dropdown-content {
|
|
display: none;
|
|
position: absolute;
|
|
background-color: #f9f9f9;
|
|
min-width: 160px;
|
|
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
|
z-index: 1;
|
|
}
|
|
|
|
.dropdown-content a {
|
|
float: none;
|
|
color: black;
|
|
padding: 12px 16px;
|
|
text-decoration: none;
|
|
display: block;
|
|
text-align: left;
|
|
margin-left: left;
|
|
}
|
|
|
|
.dropdown-content a:hover {
|
|
background-color: #ddd;
|
|
}
|
|
|
|
.dropdown:hover .dropdown-content {
|
|
display: block;
|
|
}
|
|
@keyframes onload{
|
|
0% {opacity: 0}
|
|
100% {opacity: 1}
|
|
}
|
|
</style>
|
|
<body style="animation: onload 1s linear">
|
|
<form action="/action_page.php" method="post" id="main">
|
|
<div class="navbar">
|
|
<div class="dropdown">
|
|
<button class="dropbtn">
|
|
<img style="width: 40px; height: 40px;" src="img/menubar/menu.svg" class="img-fluid">
|
|
</button>
|
|
<div class="dropdown-content">
|
|
<a id="adminpage" style="display: none;" href="adminpage.html">Adminbereich</a>
|
|
<a href="10-1.html">Über uns</a>
|
|
<a href="10-2.html">Hilfe</a>
|
|
<a href="10-3.html">AGB</a>
|
|
<a href="10-4.html">Datenschutz</a>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<a id="homebtn" href="#home"><img style="width: 40px; height: 40px;" src="img/menubar/tools-and-utensils.svg" class="tools-and-utensils"></a>
|
|
</div>
|
|
|
|
<div>
|
|
<a href="37.html"><img style="width: 40px; height: 40px;" src="img/menubar/file.svg" class="img-fluid"></a>
|
|
</div>
|
|
|
|
<div>
|
|
<a id="logoutbtn" href="#logout"><img style="width: 40px; height: 40px;" src="img/menubar/logout.svg" class="img-fluid"></a>
|
|
</div>
|
|
</div>
|
|
|
|
<div style="text-align:center">
|
|
<label style="font-size:24px;margin:10px" class="text1">Text_5_i</label>
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</body>
|
|
<script type="text/javascript" src="/app_38.js"></script></html>
|