-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (64 loc) · 2.53 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
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="stylesheet" href="./landing_page.css">
</head>
<body>
<section class="section">
<main class="details">
<nav>
<p>Header Logo</p>
<ul>
<li>header link one</li>
<li>header link two</li>
<li>header link three</li>
</ul>
</nav>
<main class="website">
<div class="div">
<h1>This website is <br>awesome</h1>
<p class="p">This website has some subtext that goes here under <br> the main title.
it's a smaller font and the color is lower <br> contrast</p>
<button class="button">Sign up</button>
</div>
<div id="image">This is a placeholder for an image<div>
</main>
</main>
</section>
<h4>Some random information.</h4>
<section class="info">
<div>
<div id="illustration">
<figcaption></figcaption>
<figcaption></figcaption>
<figcaption></figcaption>
<figcaption></figcaption>
</div>
<div class="subtext">
<p>this is some subtext <br>under an illustration <br> of image</p>
<p>this is some subtext <br> under an illustration <br>of image</p>
<p>this is some subtext <br> under an illustration <br>of image</p>
<p>this is some subtext <br> under an illustration <br>of image</p>
</div>
</div>
<div class="quote">
<article> <i>This is an inspiring quote,or a testimonial from a <br>customer.Maybe it's just filling
up space,or maybe <br>people will actually read it.Who knows?All i know<br>is that it looks
nice.</i>
</article>
<h4 class="thun">-Thor,God of Thunder</h4>
</div>
<div id="sign">
<div>
<p>Call to action! It's time!</p>
<p class="go">Sign up for our product by clicking that button right over there!</p>
</div>
<button class="but">sign up</button>
</div>
</section>
<footer>Copyright @ The Odin Project 2021</footer>
</body>
</html>