-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalgorithms.html
More file actions
46 lines (37 loc) · 1.49 KB
/
algorithms.html
File metadata and controls
46 lines (37 loc) · 1.49 KB
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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./styles/reset.css">
<link rel="stylesheet" href="./styles/base.css">
<link rel="stylesheet" href="./styles/classes.css">
<link rel="stylesheet" href="./styles/layout.css">
<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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"
rel="stylesheet" />
</head>
<body class="bg-dark text-light">
<header class="nav container flex between center-y">
<a class="logo" href="index.html">
<img src="./images/logopng.png" alt="Algorithm Visual Lab logo">
</a>
<nav class="flex-center gap-md hide-sm">
<a href="./algorithms.html" class="nav-link">Algorithms</a>
<a href="" class="nav-link">Structures</a>
<a href="./about.html" class="nav-link">About</a>
</nav>
<div class="flex-center gap-sm">
<a href="./admin.html" class="btn ghost">Log in</a>
<a href="#" class="btn primary">Start</a>
</div>
</header>
<!-- ALGORITMOS -->
<section id="algorithmsContainer" class="algorithms-grid">
</section>
</body>
<script src="app.js"></script>
</html>