-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModule4.3.5Birds.html
More file actions
32 lines (25 loc) · 1.43 KB
/
Module4.3.5Birds.html
File metadata and controls
32 lines (25 loc) · 1.43 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Birds of the bay area</title>
<!-- see https://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/quick-tip-dont-forget-the-viewport-meta-tag -->
<style>
/* following two viewport lines are equivalent to meta viewport statement above, needed for Windows */
/* see https://www.quirksmode.org/blog/archives/2014/05/html5_dev_conf.html and https://drafts.csswg.org/css-device-adapt// */
@-ms-viewport { width: 100vw ; min-zoom: 100% ; zoom: 100% ; } @viewport { width: 100vw ; min-zoom: 100% ; zoom: 100% ; }
@-ms-viewport { user-zoom: fixed ; min-zoom: 100% ; } @viewport { user-zoom: fixed ; min-zoom: 100% ; }
img {
margin-left: 1rem; margin-top: 3rem; margin-bottom: -3rem;
border: 5px solid navy; padding: 5px;}
</style>
</head>
<body>
<h1>Birds of the bay area:</h1>
<ul>
<li>Gull: <img alt="Gull" src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Gull_ca_usa.jpg/320px-Gull_ca_usa.jpg" width="150"></li>
<li>Egret: <img alt="Egret" src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Little_Egret_foot.jpg/320px-Little_Egret_foot.jpg" width="150"></li>
<li>Stilt: <img alt="Stilt" src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Black-necked_Stilt.jpg/440px-Black-necked_Stilt.jpg" width="150"></li>
</ul>
</body>
</html>