-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (66 loc) · 3.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Landing Page</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;1,300&display=swap" rel="stylesheet">
</head>
<body>
<div class="top">
<div class="header left"> Header Logo</div>
<div class="header right">
<a href="#"><li>header link one</li></a>
<a href="#"><li>header link two</li></a>
<a href="#"><li>header link three</li></a>
</div>
</div>
<div class="second">
<div class="second-text">
<div class="hero-main">This website is awesome</div>
<div class="hero-second">This website has some subtext that goes her under the main title. It's a smaller font and the color is lower contrast</div>
<button class="hero-button">Sign up</button>
</div>
<div class="second-image">
<img src="./images/previewed.png" alt="this is a placeholder for an image">
</div>
</div>
<div class="third">
<div class="information"> Some random information.</div>
<div class="cards">
<div class="image-card">
<img src="./images/Picture one.png" alt="Placeholder">
<div>this is some subtext under and illustration or image</div>
</div>
<div class="image-card">
<img src="./images/Home.png" alt="Placeholder">
<div>this is some subtext under and illustration or image</div>
</div>
<div class="image-card">
<img src="./images/Chat.png" alt="Placeholder">
<div>this is some subtext under and illustration or image</div>
</div>
<div class="image-card">
<img src="./images/Mensajes.png" alt="Placeholder">
<div>this is some subtext under and illustration or image</div>
</div>
</div>
</div>
<div class="fourth">
<div class="quote">
<div class="quote-text">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.</div>
<div class="quote-person">-Thor, God of Thunder</div>
</div>
</div>
<div class="fifth">
<div class="fifth-text">
<div class="text-top">Call to action! It's time!</div>
<div class="text-bot">Sign up for our product by clicking that button right over there!</div>
</div>
<button>Sign up</button>
</div>
<div class="footer">Copyright © The Odin Project 2021</div>
</body>
</html>