-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (83 loc) · 3.33 KB
/
index.html
File metadata and controls
93 lines (83 loc) · 3.33 KB
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
<!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="./css/styles.css">
<title>Document</title>
</head>
<body>
<nav>
<div class="nav-logo">
<p>Header logo</p>
</div>
<div class="header-links">
<ul>
<li class="header-link">header link 1</li>
<li class="header-link">header link 2</li>
<li class="header-link">header link 3</li>
</ul>
</div>
</nav>
<div class="body">
<section class="hero">
<div class="hero-left">
<h2>My awesome website</h2>
<p>Text for paragraph</p>
<a href="" class="CTA">Sign up</a>
</div>
<div class="hero-right">
<img src="./media/img/hero.webp" alt="">
</div>
</section>
<section class="random-info">
<h2>Some random information</h2>
<div class="info-container">
<div class="random-fact">
<img class="random-img" src="./media/img/random-info.webp" alt="random-fact X">
<p>Text for random fact 1 but is much longer to see how it fits with text-align:Center</p>
</div>
<div class="random-fact">
<img class="random-img" src="./media/img/random-info.webp" alt="random-fact X">
<p>Text for random fact 2 but is much longer to see how it fits with text-align:Center</p>
</div>
<div class="random-fact">
<img class="random-img" src="./media/img/random-info.webp" alt="random-fact X">
<p>Text for random fact 3 but is much longer to see how it fits with text-align:Center</p>
</div>
<div class="random-fact">
<img class="random-img" src="./media/img/random-info.webp" alt="random-fact X">
<p>Text for random fact 4 but is much longer to see how it fits with text-align:Center</p>
</div>
</div>
</section>
<section class="quote">
<div>
<div>
<p class="quote-text">This is an inspiring quote about something and something else
This is an inspiring quote about something and something else
This is an inspiring quote about something and something else</p>
</div>
<div>
<p class="quote-author">-Thor, the God of Thunder</p>
</div>
</div>
</section>
<section class="CTA-section">
<div class="CTA-container">
<div class="CTA-left">
<h2>Call to action! It's time!</h2>
<p>Sign up to our products by clicking the button right over there</p>
</div>
<div class="CTA-right">
<a href="" class="CTA-link">Sign up</a>
</div>
</div>
</section>
</div>
<footer>
<p>Copyright @ The Odin Project 2021</p>
</footer>
</body>
</html>