-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (89 loc) · 3.37 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Landing Page Project</title>
</head>
<body>
<header class="header">
<div class="navbar">
<div class="logo">Header Logo</div>
<ul class="nav">
<li><a href="#">Header Link one</a></li>
<li><a href="#">Header Link Two</a></li>
<li><a href="#">Header Link Three</a></li>
</ul>
</div>
<div class="hero">
<div class="text-sec">
<h1>This Website is awesome</h1>
<p>some random text so the Website looks
cool and interresting....what's new
<p>some random text so the Website looks
cool and interresting....what's new
here tell me.
</p>
<button>Sign up</button>
</div>
<div class="image-place-holder">image goes here if any</div>
</div>
</header>
<main class="body">
<section class="section-1">
<h2 class="info">Some random information.</h2>
<div class="images-container">
<div class="images-info">
<div class="square"></div>
<p class="img-info-text">this is very awesome text to see.
i am very happy with it..
</p>
</div>
<div class="images-info">
<div class="square"></div>
<p class="img-info-text">this is very awesome text to see.
i am very happy with it..
</p>
</div>
<div class="images-info">
<div class="square"></div>
<p class="img-info-text">this is very awesome text to see.
i am very happy with it..
</p>
</div>
<div class="images-info">
<div class="square"></div>
<p class="img-info-text">this is very awesome text to see.
i am very happy with it..
</p>
</div>
</div>
</section>
<section class="section-2">
<p class="quote">
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 know's? All i know is that it looks nice.
</p>
<p class="author">-Thor, God of Thunder</p>
</section>
<section class="section-3">
<div class="square-container">
<div class="action-call-text">
<h2 class="call-action">Call to action! it's time!</h2>
<p class="call-txt">Sign up for our product by clicking that
button right over there!
</p>
</div>
<div>
<button class="action-button">Sign up</button>
</div>
</div>
</section>
</main>
<footer class="footer">
<p class="footer-text">Copyright @ The Odin Project 2021</p>
</footer>
</body>
</html>