-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (80 loc) · 3.44 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
<!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="./styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
</head>
<body>
<!-- This is first part of the whole page with black background -->
<div class="page-1">
<!-- This section is all about header -->
<div class="header">
<div class="logo">Header Logo</div>
<div class="right-links">
<div><a href="#">header link one</a></div>
<div><a href="#">header link two</a></div>
<div><a href="#">header link three</a></div>
</div>
</div>
<!-- This section is all about hero section -->
<div class="hero-section">
<div class="content">
<div class="hero-main-text">This website is awesome</div>
<div class="hero-sec-text">This website has some subtext that goes here under the
main title. It's a smaller font and the color is lower contrast
</div>
<div class="button-1"><button type="button">#</button></div>
</div>
<div class="main-image"><img src="https://static0.gamerantimages.com/wordpress/wp-content/uploads/2023/07/demon-slayer-every-member-of-hashira-ranked-by-strength.jpg?q=50&fit=contain&w=767&h=&dpr=1.5" alt="Demon Slayer new generation Hashiras"></div>
</div>
</div>
<!-- This is section-2 of our web page -->
<div class="page-2">
<div class="heading">Some random information</div>
<div class="chain">
<div class="info">
<div class="image"></div>
<div class="text">this is some subtext under an illustration or image</div>
</div>
<div class="info">
<div class="image"></div>
<div class="text-1">this is some subtext under an illustration or image</div>
</div>
<div class="info">
<div class="image"></div>
<div class="text">this is some subtext under an illustration or image</div>
</div>
<div class="info">
<div class="image"></div>
<div class="text">this is some subtext under an illustration or image</div>
</div>
</div>
</div>
<!-- This marks the beginning of our section-3 -->
<div class="page-3">
<div 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 knows? All I know
is it looks nice.
</div>
<div class="author">-Thor God of Thunder</div>
</div>
<!-- This marks the beginning of the section-4 -->
<div class="page-4">
<div class="container">
<div class="call">
<div class="call-head">Call to action! It's time</div>
<div class="call-text"># for our product by clicking that button right over there!</div>
</div>
<div class="button-2"><button type="button-2">#</button></div>
</div>
</div>
<!-- This marks the beginning of footer section -->
<div class="footer">
<div>Copyright The Odin Project 2024</div>
</div>
</body>
</html>