-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (66 loc) · 2.85 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
<!doctype html>
<!--
this is the ferriday.zone
created by reed o'beirne
https://reedoco.io
image: (c) Reed O'Beirne 2015
Modelo image via https://www.atlasobscura.com/articles/panopticon-prison-cuba
'Watching' quote inspired by Bentham, Jeremy (1995). Božovič, Miran (ed.). The Panopticon Writings. London: Verso
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="Watching Time" content="As you wait, you become.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Watching Time</title>
<!-- CSS -->
<link href="./assets/css/00_watchingtime_style.css" rel="stylesheet" type="text/css">
<link href="./assets/css/responsive.css" rel="stylesheet" type="text/css">
<!-- Font Detailz -->
<link href="https://fonts.googleapis.com/css?family=Fjalla+One&display=swap" rel="stylesheet">
<!-- Icons from: Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<!-- 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">
<!-- JavaScriptz Top -->
<script src="./assets/js/watchingtime_reverse.js"></script>
<script src="./assets/js/p5.min.js"></script>
<script>sessionStorage.clear();</script> <!-- to reset for the navigation_script.js at bottom -->
</head>
<body>
<div class="imgbox"><!-- imgbox = Image + Text + Icons -->
<div class="container"> <!-- = Image + Text -->
<div> <img class="main-img">
<div id="sketch-holder">
<!-- canvas from JS goeth here -->
</div>
</div>
<div class="textbox">
<div class="textbox2">
<div class="textOnly" ><span class="no-break">
Leaving the Watching
</span>
to the Watched
</div>
<div> <a class="button-style" href="#">SEE MORE</a> </div>
</div> <!-- close textbox2 -->
</div> <!-- close textbox -->
</div> <!-- close container -->
<div id="iconstyle"> <!-- Icons -->
<i class="fab fa-fly"></i>
<i class="fas fa-dice-five"></i>
<i class="fas fa-dice-two"></i>
<i class="far fa-grimace"></i>
</div>
</div> <!-- close imgbox -->
<!-- Copyrights Section -->
<div class="copyright">© 2023 waiting is becoming </div>
<!-- <h3>Simple, but at What <a href="./index.html" style="color:#a1d4d5">Cost?</a></h3> -->
</body>
<!-- JavaScriptz Bottom -->
<script src="./assets/js/navigation_script.js"></script>
</html>