blob: 90106ff2241c39d7d027c67f8b4b8eeffff5a209 (
plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<title>Document</title>
</head>
<body>
<div id="top">
<!--Header-->
<div id="header">
<span id="logo">Header Logo</span>
<span>
<a>header link one</a>
<a>header link two</a>
<a>header link three</a>
</span>
</div>
<!--Hero-->
<div id="hero">
<div id="text">
<h1>
This website is awesome
</h1>
<h6>
This website has some subtext that goes here under
the main title. It's a smaller font and the color
is lower contrast.
</h6>
<button>Sign up</button>
</div>
<img>
</div>
</div>
<div id="info">
<h2>
Some random information
</h2>
<div class="images">
<img>
<h6>
this is some subtext under an illustration or image
</h6>
</div>
<div class="images">
<img>
<h6>
this is some subtext under an illustration or image
</h6>
</div>
<div class="images">
<img>
<h6>
this is some subtext under an illustration or image
</h6>
</div>
<div class="images">
<img>
<h6>
this is some subtext under an illustration or image
</h6>
</div>
</div>
<div id="quote">
<p>
This is an inspiring quote, or a testimonial from a
customer. Maybe it's just filling up space, or maybe
people will actually read it. Who knows? All I know is
that it looks nice.
</p>
<h3>
-Thor, God of Thunder
</h3>
</div>
<div id="bottom">
<div id="call-to-action">
<p>
<h3>
Call to action! It's time!
</h3>
<h6>
Sign up for our product by clicking that
button right over there!
</h6>
</p>
<button>Sign up</button>
</div>
</div>
<footer>
Copyright © The Odin Project 2021
</footer>
</body>
</html>
|