-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (60 loc) · 2.88 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Homepage</title>
<link rel="stylesheet" href="src/style.css">
<script src="src/script.js" defer></script>
</head>
<body>
<div id="content">You are on the page.</div>
<div class="navigation">
<button type="button" onclick="navigateTo('/')" class="main-button">
<?xml version="1.0" ?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg
class="home-icon" height="16px" id="Layer_1" style="enable-background:new 0 0 32 32;" version="1.1"
viewBox="0 0 32 32" width="16px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M30.938,16L18,1.188C17.453,0.594,16.938,0,16,0s-1.453,0.594-2,1.188l-6,6.87V4c0-1.104-0.896-2-2-2S4,2.896,4,4v8.637 L1.063,16C0.406,16.734,0,17.188,0,18c0,1.016,0.797,2,2,2h2v10c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2V20h2c1.203,0,2-0.984,2-2 C32,17.188,31.594,16.734,30.938,16z M24,16v12h-4v-8h-8v8H8V16H6.373L16,4.979L25.627,16H24z" />
</svg>
</button>
<button type="button" onclick="navigateTo('/pageOne')" class="main-button">
<?xml version="1.0" ?><svg class="pageOne-icon" id="icon" viewBox="0 0 32 32" width="128px" height="128px"
xmlns="http://www.w3.org/2000/svg">
<defs>
<style>
.cls-1 {
fill: #fff;
}
.cls-2 {
fill: none;
}
</style>
</defs>
<title />
<path d="M16,10V22h0V10m1-1H12v2h3V21H12v2h8V21H17V9Z" />
<rect class="cls-2" data-name="<Transparent Rectangle>" height="32" id="_Transparent_Rectangle_"
width="32" />
</svg>
</button>
<button type="button" onclick="navigateTo('/pageTwo')" class="main-button">
<?xml version="1.0" ?><svg class="pageTwo-icon" id="icon" viewBox="0 0 32 32" width="128px" height="128px"
xmlns="http://www.w3.org/2000/svg">
<defs>
<style>
.cls-1 {
fill: none;
}
</style>
</defs>
<title />
<path d="M20,23H12V17a2,2,0,0,1,2-2h4V11H12V9h6a2,2,0,0,1,2,2v4a2,2,0,0,1-2,2H14v4h6Z" />
<rect class="cls-1" data-name="<Transparent Rectangle>" height="32" id="_Transparent_Rectangle_"
width="32" />
</svg>
</button>
</div>
</body>
</html>