-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (79 loc) · 2.37 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
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Algorithm Visualizer</title>
<link rel="stylesheet" href="./css/styles.css" />
<link rel="stylesheet" href="./css/navbar.css" />
<link rel="stylesheet" href="./css/footer.css" />
<link rel="stylesheet" href="./css/home.css" />
<link rel="stylesheet" href="./css/visualizer.css" />
<!-- google fonts -->
<link
href="https://fonts.googleapis.com/css?family=Tomorrow:400,600&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Raleway:400,700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap"
rel="stylesheet"
/>
<!-- fontawesome -->
<script
src="https://kit.fontawesome.com/3d162eff17.js"
crossorigin="anonymous"
></script>
</head>
<body>
<main>
<!-- navbar -->
<nav>
<div class="wrapper font-tomorrow">
<div class="logo">
<a href="#/"> <img src="./assets/logo.png" alt="LOGO"/></a>
</div>
<ul>
<!-- <li><a href="#/">Home</a></li> -->
<li><a href="#/visualizer">Visualizer</a></li>
<!-- <li><a href="#/about">About</a></li> -->
</ul>
</div>
</nav>
<!-- navbar end -->
<div id="content"></div>
<!-- footer -->
<footer>
<div class="wrapper">
<div class="logo">
<a href="#/">
<img src="./assets/logo.png" alt="LOGO" />
</a>
</div>
<div class="info">
<div class="links">
<!-- <a href="#/">Home</a> -->
<a href="#/visualizer">Visualizer</a>
<!-- <a href="#/about">About</a> -->
</div>
<div class="social">
<div class="item">
<a href="https://github.com/iamtabrezkhan" target="_blank">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</div>
</div>
</footer>
</main>
<script type="module" src="./app.js"></script>
</body>
</html>