habe ein kleines login feld gemacht und später kommt noch python dazu
code html
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="haha.css">
</head>
<body>
<header>
</header>
<main>
<div id="Anmeldefeld">
<form action="">
<h1 class="h1" >login</h1>
<input type="email" name="" placeholder="E-mail eingeben" id="" required="required"> <br>
<input type="password" name="" placeholder="password eingeben" id="" required="required"> <br>
<h4> <a href="#">Password vergessen?</a></h4>
<input type="submit" value="Anmelden">
</form>
</div>
</main>
<footer>
</footer>
</body>
</html>
css
body {
float: inline-start;
margin-top: 15%;
}
h1 {
font-family: sans-serif;
color: darkblue;
}
#Anmeldefeld {
display: flex;
align-items: center;
justify-content: center;
box-shadow: 20px 20px 10px gray;
border-style: solid;
}
das ist komisch denn wenn ich das bei mir in Firefox anwende passiert nichts