-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (61 loc) · 2.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>TOP Landing Page Project</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<ul class="nav-bar">
<li class="logo">Header Logo</li>
<li>header link 1</li>
<li>header link 2</li>
<li>header link 3</li>
</ul>
<div class="content">
<div class="intro">
<span class="hero-main">This website is awesome.</span>
<span class="hero-second">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus a nulla sit amet tellus pretium accumsan ut non diam. Nulla accumsan sagittis efficitur.</span>
<button>Sign Up</button>
</div>
<img src="images/intro.jpg" alt="A wheat field with a beautiful blue sky full of white clouds.">
</div>
</div>
<div class="information">
<span class="info-header">Some random information.</span>
<div class="media">
<div>
<img src="images/information.jpg" alt="A beautiful ocean.">
<span>This is some subtext under an illustation or image</span>
</div>
<div>
<img src="images/information.jpg" alt="A beautiful ocean.">
<span>This is some subtext under an illustation or image</span>
</div>
<div>
<img src="images/information.jpg" alt="A beautiful ocean.">
<span>This is some subtext under an illustation or image</span>
</div>
<div>
<img src="images/information.jpg" alt="A beautiful ocean.">
<span>This is some subtext under an illustation or image</span>
</div>
</div>
</div>
<div class="quote">
<span class="words">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.</span>
<span class="person">-Thor, God of Thunder</span>
</div>
<div class="cta">
<div class="cta-words">
<span>Call to action! It's time!</span>
Sign up for our product by clicking that button right over there!
</div>
<button>Sign Up</button>
</div>
<div class="footer">
Made by Richa <3
</div>
</body>
</html>