forked from realpython/materials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
24 lines (21 loc) · 662 Bytes
/
Copy pathgallery.html
File metadata and controls
24 lines (21 loc) · 662 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Image gallery</title>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.css">
<link rel="stylesheet" href="../style.css">
</head>
<body>
<nav>
<a href="../index.html">Home</a>
<a href="../emoji.html">Emoji</a>
</nav>
<h1>Image gallery</h1>
<div class="gallery rounded">
<img src="sky_1.png" alt="Cloudy sky." class="rounded">
<img src="sky_2.png" alt="Sun shining through a cloudy sky." class="rounded">
<img src="sky_3.png" alt="Sky with almost no clouds." class="rounded">
</div>
</body>
</html>