forked from OleksiyRudenko/a-tiny-JS-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (68 loc) · 3.5 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
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>A Tiny JS World</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="apple-touch-icon" sizes="57x57" href="./ico/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="./ico/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="./ico/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="./ico/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="./ico/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="./ico/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="./ico/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="./ico/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="./ico/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="./ico/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="./ico/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="./ico/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="./ico/favicon-16x16.png">
<link rel="manifest" href="./ico/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="./ico/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Overpass%20Mono">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.4/css/all.css">
<link rel="stylesheet" href="https://oleksiyrudenko.github.io/normalize.css/normalize.css">
<link rel="stylesheet" href="https://oleksiyrudenko.github.io/default-beauty.css/default-beauty.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<img src="./img/tiny-world-LitvinovCastle.png" class="emblem" />
<div class="column">
<h1>A Tiny JS World</h1>
<div>
This tiny world is created as a part of
<a href="https://github.com/OleksiyRudenko/a-tiny-JS-world" target="_blank">A Tiny JS World</a> project
</div>
</div>
</header>
<main id="main">
<h2>This world is inhabited by</h2>
<p class="source-code">(world's <code><a id="source-code" href="./index.js" target="_blank">source code</a></code>)</p>
</main>
<footer>
<div>
<div class="logo">A tiny JS world</div>
<!-- div class="credits">
Credits: Site emblem © 2017,
<a href="http://www.tactus.com/blog/create-amazing-360-degree-tiny-planet-photos-videos/" target="_blank">TACTUS</a>
</div -->
</div>
<p><small>
Styled with
<a href="https://github.com/OleksiyRudenko/default-beauty.css" target="_blank">
<i class="fas fa-heart"></i> Default-Beauty.css <i class="fab fa-github-square"></i>
</a>
and
<a href="https://github.com/OleksiyRudenko/normalize.css" target="_blank">
normalize.css fork <i class="fab fa-github-square"></i>
</a>
</small></p>
</footer>
<script src="./js/lib.js"></script>
<script src="./index.js"></script>
</body>
</html>