generated from Seekra/repository-template
"Add HTML Elements and Style" #3
+26
@@ -0,0 +1,26 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Seekra</title>
|
||||||
|
<link rel="stylesheet" href="./styles/style.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<h1>Seekra</h1>
|
||||||
|
<h3>Build to search.</h3>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<form id="searchbar">
|
||||||
|
<input type="search" id="search" name="search"><br>
|
||||||
|
<input type="submit" value="Suchen">
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<span>Version 1</span>
|
||||||
|
<time datetime="2026-05-01">01/05/2026</time>
|
||||||
|
<time datetime="20:30">20:30 CEST</time>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
body{
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1{
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3{
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#searchbar{
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
#searchbar input[type="search"]{
|
||||||
|
width: 60%;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
footer{
|
||||||
|
justify-content: center;
|
||||||
|
margin-top: 100px;
|
||||||
|
display: flex;
|
||||||
|
gap: 20px;
|
||||||
|
border-top: 1px solid;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user