-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
36 lines (36 loc) · 827 Bytes
/
test.html
File metadata and controls
36 lines (36 loc) · 827 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
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<title>Image Test</title>
<style>
.test-container {
display: flex;
gap: 20px;
padding: 20px;
}
.test-image {
width: 120px;
height: 120px;
border: 2px solid red;
background: yellow;
}
</style>
</head>
<body>
<h1>Image Test</h1>
<div class="test-container">
<div>
<h3>Planet Spot</h3>
<img src="planet_spot.png" alt="Planet" class="test-image">
</div>
<div>
<h3>Voice</h3>
<img src="voice.png" alt="Voice" class="test-image">
</div>
<div>
<h3>Hikers</h3>
<img src="hikers.png" alt="Hikers" class="test-image">
</div>
</div>
</body>
</html>