-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Images Grid</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="header_images">
<h1>Images with Grid/:has/:hot</h1>
</header>
<main>
<div class="wrapper_images">
<img src="./images/4.png" alt="bird" />
<img src="./images/6.png" alt="creature-2" />
<img src="./images/5.png" alt="creature-1" />
<img src="./images/1.png" alt="spider" />
<img src="./images/2.png" alt="t-rex" />
<img src="./images/3.png" alt="chameleon" />
<img src="./images/7.png" alt="creatures-1" />
<img src="./images/8.png" alt="creatures-2" />
<img src="./images/9.png" alt="dragons-1" />
<img src="./images/10.png" alt="dragons-2" />
<img src="./images/11.png" alt="dragons-3" />
<img src="./images/12.png" alt="dragons-4" />
</div>
</main>
</body>
</html>