„index.html“ ändern

master
flambus 2020-02-17 08:54:13 +01:00
parent cff70dd7b8
commit 2c0a0b2862
1 changed files with 55 additions and 29 deletions

View File

@ -1,32 +1,58 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>ThreadR - Welcome</title> <title>Home page</title>
<link rel="stylesheet" type="text/css" href="content/style.css"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
</head> <style>
<body> body {margin: 0;}
<div class="container">
<div class="item-1"> ul.topnav {
<h1><center>ThreadR</center></h1> list-style-type: none;
</div> margin: 0;
<div class="item-2 round-border"> padding: 0;
<p>Login:</p> overflow: hidden;
<form action="./content/login.php" method="post"> background-color: #333;
<input type="text" name="name" maxlength="20" placeholder="Username" /> }
<input type="password" name="password" maxlength="256" placeholder="Password" />
<p></p> ul.topnav li {float: left;}
<a href="./content/homepage.html"> <button> Log in </button> </a>
</form> ul.topnav li a {
<p></p> display: block;
</div> color: white;
<div class="item-3"> text-align: center;
<p></p> padding: 14px 16px;
<a href="./content/signup.html"> <button> Sign up </button> </a> text-decoration: none;
<p></p> }
</div>
<div class="item-4"> ul.topnav li a:hover:not(.active) {background-color: #111;}
<center><a href="https://lostcave.ddnss.de/common/content/about/">About</a></center>
</div> ul.topnav li a.active {background-color: #4CAF50;}
</div>
</body> ul.topnav li.right {float: right;}
@media screen and (max-width: 600px) {
ul.topnav li.right,
ul.topnav li {float: none;}
}
</style>
</head>
<body>
<ul class="topnav">
<li><a class="active" href="#home">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li>
<li class="right"><a href=".common/index.html">Log In</a></li>
</ul>
<div style="padding:0 16px;">
<h2>ThreadR Homepage</h2>
<p>This example use media queries to stack the topnav vertically when the screen size is 600px or less.</p>
<p>You will learn more about media queries and responsive web design later in our CSS Tutorial.</p>
<h4>Resize the browser window to see the effect.</h4>
</div>
</body>
</html> </html>