-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (38 loc) · 691 Bytes
/
index.html
File metadata and controls
46 lines (38 loc) · 691 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
<title>Debug Test File</title>
</head>
<body>
<h1>Fast Framework</h1>
{{ date }}
<div class="myMenu">
<myMenu></myMenu>
</div>
<my-custom></my-custom>
<clo-ck>route="./examples/clock/"</clo-ck>
<!-- Styles added here so you can notice you are able to style custom tags -->
<style>
body {
background-color: #333;
color: #bbb;
}
myMenu a {
display: flex;
color: mediumSlateBlue;
font-size: 3em;
}
clo-ck {
position: fixed;
bottom: 5px;
right: 5px;
}
.clockCircle {
fill: mediumSlateBlue;
}
</style>
<script type="module" src="./main.js"></script>
</body>
</html>