-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
143 lines (114 loc) · 3.73 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Samuel Akongbota">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reysam Project</title>
<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=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="M-queries.css">
</head>
<body>
<div class="wrapper">
<nav class="nav-1">
<input id="check" type="checkbox">
<div class="btn1">
<label for="check"><img src="assets/bx-menu.svg"></label>
</div>
<div class="logo">Header Logo</div>
<ul class="links">
<div class="btn2">
<label for="check"><img src="assets/bx-x.svg"></label>
</div>
<li><a class="active" href="#">Home</a></li>
<li><a href="#">Service</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Signup</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<div class="nav-2">
<div class="logo">Header Logo</div>
<ul class="links-2">
<li><a class="active-2" href="#">Home</a></li>
<li><a href="#">Service</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Signup</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="hero">
<div class="hero-div">
<div class="herodiv">
<h1>This website is awesome</h1>
<p>This website has some subtext that goes here under the main title. It's a smaller font and the color is
lower contrast</p>
<div class="button-container"><button>Sign up</button></div>
</div>
<div class="herodiv">
<div>
<p>this is a placeholder for an image</p>
</div>
</div>
</div>
</div>
<div class="boxcontent">
<div class="boxcontent-text">Some random information</div>
<div class="boxcontainer">
<div class="box">
<div></div>
<div>
<p>this is some subtext under an illustration or image</p>
</div>
</div>
<div class="box">
<div></div>
<div>
<p>this is some subtext under an illustration or image</p>
</div>
</div>
<div class="box">
<div></div>
<div>
<p>this is some subtext under an illustration or image</p>
</div>
</div>
<div class="box">
<div></div>
<div>
<p>this is some subtext under an illustration or image</p>
</div>
</div>
</div>
</div>
<div class="quotesection">
<div>
<p><i>This is an inspiring quote, or 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.</i></p>
<p>~Thor, God of Thunder</p>
</div>
</div>
<div class="signupsection">
<div class="signupsection-div1">
<div class="signupsection-div2">
<div>
<p>Call to action! It's time!</p>
<p>Sign up for our product by clicking on the button right over there!</p>
</div>
<div>
<button>Sign up</button>
</div>
</div>
</div>
</div>
<div class="footer">
<p>Copyright © The Odin Project 2023</p>
</div>
</div>
</body>
</html>