-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (46 loc) · 1.72 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
<!--
The responsive navbar was inspired by this tutorial:
https://www.freecodecamp.org/news/how-to-build-a-responsive-navbar-with-a-toggle-menu-using-flexbox-3438e1d08783/
-->
<!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">
<title>Vehicle Plates</title>
<link rel="icon" href="./assets/flag-ru.svg">
<link rel="stylesheet" href="./src/css/styles.css">
<link rel="stylesheet" href="./src/css/plate.css">
</head>
<body data-bs-theme="dark">
<header>
<div class="nav-bar">
<div class="nav-container">
<div class="nav-brand brand-plate">
<p>RUS</p>
<img src="./assets/flag-ru.svg">
</div>
<button type="button" class="nav-toggler toggler-plate">
<img src="./assets/bars.svg">
</button>
<div class="nav-items">
<a href="/" class="nav-link link-plate">Regular</a>
<a href="/public" class="nav-link link-plate yellow">Public</a>
<a href="/military" class="nav-link link-plate black">Military</a>
<a href="/diplomatic" class="nav-link link-plate red">Diplomatic</a>
<a href="/emergency" class="nav-link link-plate blue">Emergency</a>
<a href="/special" class="nav-link link-plate">Special</a>
</div>
</div>
</div>
</header>
<main>
<div class="container">
<div id="router-view"></div>
</div>
</main>
<script src="./src/js/main.js"></script>
<script src="./src/js/router.js"></script>
</body>
</html>