-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
40 lines (37 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Setting up some basic meta and link tags. -->
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./img/html-assets/icons/logo-Dark.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="./src/style.css">
<title>Geonomy</title>
</head>
<body>
<!-- Setting up the root element & a script tag that are used to display the App. -->
<div id="root"></div>
<script type="module" src="./src/main.jsx"></script>
<!-- If the user has JavaScript disabled, a noscript page, whose purpose is to provoke the user to enable it gets displayed. -->
<noscript>
<div class="content">
<!-- A highly-confidential image, whose purpose is to visualize what has happened gets loaded. -->
<div class="img-container">
<img src = "./img/html-assets/no-script/noJS-logo.png">
</div>
<!-- A paragraph is loaded to clarify what has happened. -->
<div class="text-container">
<p>
It appears that you have blocked your brower from
using <span class="gradient-text">JavaScript</span>.
Please follow this quick guide and reload the page:
</p>
<!-- A link to a guide explaining how to enable JavaScript is displayed. -->
<p id="enable-link">
<a href = "https://www.enable-javascript.com/">https://www.enable-javascript.com/</a>
</p>
</div>
</div>
</noscript>
</body>
</html>