-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 2.5 KB
/
index.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
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="styles.css">
<title>Assignment 2</title>
</head>
<body>
<header class="header header--clr">
<h1 class="f1logo">F1</h1>
<p></p>
</header>
<main>
<div class="main-content">
<div class="card card--clr">
<div class="card--content">
<h3 id="registry">Create account</h3>
<p id="newsletter">The newsletter for you </p>
<form>
<div class="card--form">
<input type="text" name="name" placeholder=" Name" required>
</div>
<div class="card--form">
<input type="text" name="surname" placeholder=" Surname" required>
</div>
<div class="card--form">
<input type="email" name="email" placeholder=" Email" required>
</div>
<div class="card--form">
<input type="number" name="age" id="age" min="1" max="199" placeholder=" Age" required>
</div>
<div>
<input type="submit" name="button" id="button" value="Submit">
</div>
</form>
</div>
</div>
<div class="sidebar--info">
<p class="sidebar--info--text">Don't miss a Formula 1 moment – with the latest news, videos, standings and results. Go behind the scenes and get analysis straight from the paddock.</p>
<p class="sidebar--info--text">Check out this season's official F1 line-up. Full breakdown of drivers, points and current positions. Follow your favourite F1 drivers on and off the track.</p>
</div>
</div>
</main>
<footer>
<div class="footer footer--clr">
<div class="ftr--f">F1</a></div>
<div class="ftr--f" >F2</div>
<div class="ftr--f">F3</div>
<p id="tm">TM</p>
</div>
</footer>
</body>
</html>