-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
42 lines (42 loc) · 1.62 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Example website for practice - About</title>
<link rel="stylesheet" href="main.css" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<!-- icon -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
</head>
<body>
<div class="header">
<h1 class="title">A fancy Page</h1>
<h3 class="description">I'm bored and that's why I practice html & css</h3>
</div>
<nav class="table">
<ul id="navigation">
<li><a href="index.html" title="">Home</a></li>
<li><a href="baking-journey.html">Baking Journey</a></li>
<li><a href="fake-store.html">Fake Store</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<section class="normalsection">
<p> Look, it's a form which does absolutely nothing (yet)!</p>
<form>
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" required><br>
<label for="mail">E-Mail:</label><br>
<input type="email" id="mail" name="mail"><br>
<label for="date">When do you think I'll lose my motivation?</label><br>
<input type="date" id="date" for="date"><br>
<label for="feedback">Feedback:</label><br>
<textarea name="feedback" rows="10" cols="30" placeholder="Please offer your feedback here. Note that nothing gets send yet."></textarea><br>
<input type="submit" value="Submit">
</form>
</section>
</body>
</html>