-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (97 loc) · 4.88 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styles.css">
<title>Pointless Site</title>
</head>
<body>
<div class="header clr-bg-dark website-padding">
<div class="logo clr-text-accent">PointlesSite Inc.</div>
<div class="links clr-text-light">
<ul>
<li><a class="clr-text-light" href="https://heeeeeeeey.com/">Recipes</a></li>
<li><a class="clr-text-light" href="https://longdogechallenge.com/">Photos</a>
</li>
<li><a class="clr-text-light" href="https://onesquareminesweeper.com/">Inspiration</a>
</li>
</ul>
</div>
</div>
<div class="content">
<div class="content-top clr-bg-dark website-padding">
<div class="content-top-text">
<div class="content-top-text-title clr-text-lighter">This website is
pointless!!!
</div>
<div class="content-top-text-main clr-text-light">
<p>This website aims to show you some minimalistic photos of food...</p>
<p>That's it!... Completely pointless!</p>
<p>Naturally then all links lead to pointless places... :)</p>
</div>
<div class="content-top-text-button">
<button class="round clr-bg-accent-bright clr-text-lighter">
<a class="clr-text-lighter"
href="https://puginarug.com/">Sign Up</a>
</button>
</div>
</div>
<div class="content-top-img">
<img class="top-img" src="./images/cordyceps.jpg">
</div>
</div>
<div class="content-stacks clr-bg-light website-padding">
<div class="content-stacks-text clr-text-dark">Look at these tiny squares!</div>
<div class="content-stacks-area">
<div class="content-stacks-area-cube clr-text-dark">
<img class="squared" src="./images/cherry.jpg" alt="Photo of a Cherry">
This is a minimalistic photo of a cherry by itself.
</div>
<div class="content-stacks-area-cube clr-text-dark">
<img class="squared" src="./images/orange.jpg" alt="Photo of a Orange">
This is a minimalistic photo of an orange on a plate.
</div>
<div class="content-stacks-area-cube clr-text-dark">
<img class="squared" src="./images/lollipop.jpg" alt="Photo of a Lollipop">
This is a minimalistic photo of a lollipop on a plate.
</div>
<div class="content-stacks-area-cube clr-text-dark">
<img class="squared" src="./images/tangerine.jpg"
alt="Photo of a Tangerine">
This is a minimalistic photo of a tangerine by itself.
</div>
</div>
</div>
<div class="content-quote clr-bg-accent-dim website-padding">
<div class="content-quote-text clr-text-dark">The only time to eat diet food is
while you're
waiting for the steak to cook.
</div>
<div class="content-quote-author clr-text-accent">Julia Child</div>
</div>
<div class="content-button clr-bg-light website-padding">
<div class="round bottom-container clr-bg-accent-bright">
<div class="content-button-text">
<div class="content-button-title clr-text-lighter">Call to action! It's
time!
</div>
<div class="content-button-main clr-text-light">Click the button to go
somewhere else...
</div>
</div>
<div class="content-button-button">
<button class="round clr-bg-dark clr-text-lighter">
<a class="clr-text-lighter"
href="http://eelslap.com/">Sign Up</a></button>
</div>
</div>
</div>
</div>
<div class="footer clr-bg-dark clr-text-light website-padding">Copyright © The Odin Project
2023
</div>
</body>
</html>