-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (42 loc) · 1.44 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>my page</title>
<meta name="description" content="water">
<!--meta name="tommy" content="me"-->
<!-- CSS -->
<link rel="stylesheet" href="https://unpkg.com/98.css@0.1.4/build/98.css" />
<link rel="stylesheet" href="css/main.css?v=1.0">
<!-- JS -->
<script src="https://unpkg.com/jquery@3.3.1/dist/jquery.min.js"></script>
<script src="js/tinycolor.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<header>
<h1>Hello</h1>
</header>
<div class="content">
<p>click there 👉 <a href="about.html" class="clickThis">here</a></p>
</div>
<div class="window" id="error-window">
<div class="title-bar">
<div class="title-bar-text">
error...
</div>
<div class="title-bar-controls">
<button aria-label="Minimize" class="minimizeButton" onclick="doSomethingToWindow('error-window')"></button>
<button aria-label="Maximize" class="maximizeButton" onclick="maximizeWindow('error-window')"></button>
<button aria-label="Close" class="closeButton" onclick="hideWindow('error-window')"></button>
</div>
</div>
<div class="window-body">
<p>no</p>
<section class="field-row" style="justify-content: flex-end">
<button onclick="hideWindow('error-window');">OK</button>
</section>
</div>
</div>
</body>
</html>