-
Notifications
You must be signed in to change notification settings - Fork 41
/
index.html
47 lines (42 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<base href="/">
<title>Web Development Demos</title>
<style>
body {
padding: 10%;
}
p {
text-transform: capitalize;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="favicon.ico" rel="shortcut icon">
<link rel="icon" type="image/jpg" href="meta/favicon-16x16.jpg" sizes="16x16">
<link rel="icon" type="image/jpg" href="meta/favicon-32x32.jpg" sizes="32x32">
<link rel="icon" type="image/jpg" href="meta/favicon-96x96.jpg" sizes="96x96">
<meta name="theme-color" content="#3c3c42">
<link rel="manifest" href="manifest.json">
</head>
<body>
<ul>
<li>
<a href="/">Home</a>
</li>
<li>
<a href="components/">Components</a>
</li>
<li>
<a href="css/">CSS</a>
</li>
<li>
<a href="javascript/">JavaScript</a>
</li>
<li>
<a href="html/">HTML</a>
</li>
</ul>
<script src="js/register.js"></script>
</body>
</html>