-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
88 lines (73 loc) · 2.63 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
<!DOCTYPE html>
<html>
<head>
<title>A Page About Benches</title>
<link rel="stylesheet" href="Style.css">
</head>
<body>
<nav>
<strong>The Park Bench</strong>
<ul class="links">
<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>
</nav>
<div class="header">
<div>
<h1>This is a Website About Benches</h1>
<p>This website has some photo's of Benches, not for any reason just because everyone needs a bench</p>
<a href="#" class="button1">Sign up</a>
</div>
<div class="ImgWrapper">
<img alt="This is a generic stock photo of a bench" src="images/pexels-mike-bird-130987.jpg" id="HeaderImage" class="PrimaryImg"></div>
</div>
<div class="content">
<h2>Here is some information about Benches</h2>
<div class="information">
<div>
<img alt="This is a generic stock photo of a bench" src="images/pexels-pixabay-220010.jpg" id="Image1">
<p>
This is some subtext under an illustration or image
</p>
</div>
<div>
<img alt="This is a generic stock photo of a bench" src="images/pexels-robin-mcpherson-908986.jpg" id="Image2">
<p>
This is some subtext under an illustration or image
</p>
</div>
<div>
<img alt="This is a generic stock photo of a bench" src="images/pexels-marx-ilagan-616381.jpg" id="Image3">
<p>
This is some subtext under an illustration or image
</p>
</div>
<div>
<img alt="This is a generic stock photo of a bench" src="images/pexels-jimmy-chan-3138839.jpg" id="Image4">
<p>
This is some subtext under an illustration or image
</p>
</div>
</div>
</div>
<div class="review">
<p>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</p>
<p class="author"> - Thor, God of Thunder</p>
</div>
<div class="content">
<div class="call">
<div>
<h3>
Call to Action! It's time!
</h3>
<p>Sign up for our product by clicking that button right over there!</p>
</div>
<a class="button1" href="#">Sign Up</a>
</div>
</div>
<div class="footer">
<p>Copyright © The Odin Project 2021, Student <a href="https://github.com/Spartin996">Spartin996</a> 2023 </p>
</div>
</body>
</html>