-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
62 lines (45 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>snow-env</title>
<script src="./src/app.js" type="module"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,200;1,300&display=swap" rel="stylesheet">
<link rel="shortcut icon" type="x-icon" href="/img/browserLogo.webp">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Work+Sans&display=swap" rel="stylesheet">
<!-- axios -->
<!-- <script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script> -->
<!-- <script src="https://unpkg.com/axios/dist/axios.min.js"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.1.3/axios.js" integrity="sha512-xjzDqCmpabFznyCZ92vM1F0gg8ExgSukopZQOCcVbObLyJSmZAkaB9wzOCeSClearljJcjRh67cGDp2uv4diLg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<div class="visual-nav">
<img src="./img/SN.iix" alt="" class="snLogo">
<p class="currentInstance"></p>
<a class="logout" href="javascript:void(0)">Logout</a>
</div>
<div class="content">
<div class="menu">
<div class="nav">
<a href="/projects/1" class="btn options">Mini Project 1</a>
<a href="/projects/2" class="btn options">Mini Project 2</a>
<a href="/projects/3" class="btn options">Mini Project 3</a>
<a href="/projects/4" class="btn options">Mini Project 4</a>
<a href="/projects/5" class="btn options">Mini Project 5</a>
<a href="/projects/6" class="btn options">Mini Project 6</a>
</div>
<div class="spacer">
</div>
</div>
<div class="main-content" id="main-a">
</div>
</div>
</body>
</html>