-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
60 lines (54 loc) · 1.4 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Taiwan Web Technology Promotion Organization 臺灣網際網路技術推廣組織</title>
<link rel="icon" href="/favicon.ico">
<style>
.js-required>div {
text-align: center;
font-family: sans-serif;
margin-top: 10px;
margin-bottom: 10px;
}
.js-required a {
text-decoration: none;
color: #007ace;
}
.js-required a:hover {
color: #005bcf;
}
.js-required .title {
font-size: 1em;
font-weight: bold;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<noscript>
<div class="js-required">
<div class="title">
Ahoy! It seems that JavaScript is disabled in your browser.
</div>
<div>
The application mandates the use of JavaScript for proper functionality,
for rendering content and ensuring a seamless user experience.
</div>
<div>
Please enable JavaScript in your browser settings and refresh the page to continue.
</div>
<div>
Thank you!
</div>
<div>
© <a href="https://web-tech.tw" target="_blank">
Taiwan Web Technology Promotion Organization
</a>
</div>
</div>
</noscript>
</body>
</html>