-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
29 lines (29 loc) · 760 Bytes
/
test.html
File metadata and controls
29 lines (29 loc) · 760 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Test</title>
<style>
body {
background: #001f3f;
color: white;
font-family: monospace;
padding: 20px;
text-align: center;
}
img {
max-width: 90%;
border: 3px solid lime;
margin: 20px auto;
display: block;
}
</style>
</head>
<body>
<h1>Testing California Map Image</h1>
<p>If you see the image below, it works!</p>
<img src="California_Map.png" alt="California Map Test">
<p>Image source: california-map-converted.png</p>
</body>
</html>