-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (45 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Fluffle</title>
<link rel="stylesheet" href="src/radio.css">
<link rel="stylesheet" href="src/index.css">
<link rel="stylesheet" href="src/articles.css">
<link rel="stylesheet" href="src/modal.css">
<link rel="stylesheet" href="src/navbar.css">
<link rel="stylesheet" href="src/profile.css">
<link rel="stylesheet" href="src/content.css">
<script src="https://cdn.jsdelivr.net/npm/apexcharts"></script>
<script src="src/articles.js"></script>
<script src="src/helpers.js"></script>
<script src="src/breathing/js"></script>
<script src="src/index.js"></script>
</head>
<body>
<div class="modal-shadow fill">
</div>
<main class="body fill">
<div class="main">
<div class="navigation fill">
<div class="logo-wrapper">
<img src="img/logos/sakura.png" class="logo"/>
</div>
<div class="nav-buttons-container">
</div>
<div class="logout-wrapper">
<img src="img/nav-icons/logout.png" class="logout"/>
</div>
</div>
<div class="content fill">
</div>
<div class="profile-wrapper">
<div class="profile fill">
</div>
</div>
<aside class="modal-window">
</aside>
</div>
</main>
</body>
</html>