-
Notifications
You must be signed in to change notification settings - Fork 0
/
04-waitin-at-the-end-of-the-road.html
77 lines (54 loc) · 2.36 KB
/
04-waitin-at-the-end-of-the-road.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
<!doctype html>
<!--
this is the ferriday.zone
created by reed o'beirne
https://reedoco.io
image: (c) 2022 ukrinform/rex/shutterstock
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Everybody is Somebody</title>
<!-- CSS -->
<link href="./assets/css/04_bells_style.css" rel="stylesheet" type="text/css">
<link href="./assets/css/responsive.css" rel="stylesheet" type="text/css">
<!-- Font Details -->
<link href="https://fonts.googleapis.com/css?family=Fjalla+One&display=swap" rel="stylesheet">
<!-- Updated Icons from Font Awesome - different from older pages -->
<script src="https://kit.fontawesome.com/0b28572a53.js" crossorigin="anonymous"></script>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="./assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon/favicon-16x16.png">
<link rel="manifest" href="./assets/favicon/site.webmanifest">
</head>
<body>
<div class="imgbox"><!-- imgbox = Image + Text + Icons -->
<div class="container"> <!-- = Image + Text -->
<div> <img class="main-img" src="./assets/imagez/volunteers.png" alt="Done with the Compass."> </div>
<div class="textbox">
<div class="textbox2">
<div class="textOnly" ><span class="no-break">
Ringing the Bells
</span><br><span class="no-break">
that Still Can Ring <!-- Thinking of you, Leonard Cohen -->
</span></div>
<div> <a class="button-style" href="#"><span class="no-break">MARCH ON</span></a> </div>
</div> <!-- close textbox2 -->
</div> <!-- close textbox -->
</div> <!-- close container -->
<div id="iconstyle"> <!-- Icons -->
<i class="fa-solid fa-bell"></i>
<i class="fa-solid fa-hand-holding-hand"></i>
<i class="fa-solid fa-scale-balanced"></i>
<i class="fa-solid fa-truck-plane"></i>
</div>
</div> <!-- close imgbox -->
<!-- Copyrights Section -->
<div class="copyright"><font color="#1e0d05">© 2023 mechanism of power</font></div>
</body>
<!-- JavaScriptz Bottom -->
<script src="./assets/js/navigation_script.js"></script>
</html>