-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 1.18 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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<title>Design Dictionary</title>
<link rel='stylesheet' href='./style/style.css'>
<link rel='stylesheet' href='./style/mobile.css'>
<link rel='stylesheet' href='./style/loading.css'>
<link rel='shortcut icon' href='./img/favicon.png' type='image/x-icon'>
<link href='https://fonts.googleapis.com/css?family=Lato:300,400&display=swap' rel='stylesheet'>
<script src='./script/script.js'></script>
<script src='./script/header.js'></script>
<script src='https://www.gstatic.com/firebasejs/6.3.4/firebase-app.js'></script>
<script src='https://www.gstatic.com/firebasejs/6.3.4/firebase-database.js'></script>
<script src='https://www.gstatic.com/firebasejs/6.3.4/firebase-auth.js'></script>
</head>
<body>
<div id='loader' class='hide'>
<div class='lds-ellipsis'>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<div id='headerWrapper'></div>
<div class='wrapper'>
<div id='colorsWrapper'></div>
</div>
</body>
</html>