-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnorway.html
48 lines (42 loc) · 1.85 KB
/
norway.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<!-- Add a specific country name to the title -->
<title>License Plates of Norway</title>
<script async src="https://eu.umami.is/script.js" data-website-id="8ad25aff-b977-489c-aa1b-b8e860fce9eb"></script>
</head>
<body>
<div class="container">
<div class="menu">
<button class="menu-btn">Menu</button>
<div class="menu-content">
<ul>
<li><a href="index.html">Country Index</a></li>
<li><a href="norway.html">Page 1</a></li>
</ul>
</div>
</div>
<body>
<div class="container">
<h1>License Plates of<br>Norway (NO)</h1>
<p align="center">Photographed in The Netherlands</p>
<div class="license-plates" id="license-plates-container">
<img src="norway/PD 74720.jpg" alt="PD 74720" class="images">
<img src="norway/PD 74720 C.jpg" alt="PD 74720" class="images" width="800px">
<p>Normal series. PD = Arendal.</p>
<img src="norway/TH 5238.jpg" alt="TH 5238" class="images">
<img src="norway/TH 5238 C.jpg" alt="TH 5238" class="images" width="800px">
<p>Trailer series. Trailers have no region coding since 2014.</p>
<img src="norway/EJ 14774.jpg" alt="EJ 14774" class="images">
<img src="norway/EJ 14774 C.jpg" alt="EJ 14774" class="images" width="800px">
<p>Electric Vehicle series. E = Electric. No region coding.</p>
</div>
</div>
<p align="center"><a href="index.html">Country Index</a></p>
</div>
<script src="scripts.js"></script>
</body>
</html>