forked from learn-co-curriculum/phase-0-html-images-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (20 loc) · 1.06 KB
/
index.html
File metadata and controls
23 lines (20 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>HTML Images</title>
</head>
<body>
<img src="https://stock.adobe.com/ke/search?k=elephant"
alt="Elephant"
title="We take photos of animals"/>
<img src="https://s3.amazonaws.com/ironboard-learn/lion.jpg
" alt="A lion"
title="Welcome to Amboseli"/>
<img src="https://lens.google.com/search?ep=gisbubb&hl=en&re=df&p=AbrfA8qSWUG7Xb20hPHEbiM5r6AqtYmNsTbpZm43M8N5Fb13YjhRYGNcKppFJ3rL8yH7yJ0eS0yoDtlSaGHoGOqpD_-2HnicPGJ2VMWsrkMqLZHrwnlLh-22rPrykMCJchu5X8rIypRJP4lc6stloMKlMioDYZyWfvJwMWeOxpNMfcTJ5XtcY6433XtZABJgnOlYZsoOVbi7AFToRhltxnNtb61GZbCvPvQ2pVZtq02PqI1TrUo-LV2kaM0uJT1GqZV8EVd4trOr7KSo5074#lns=W251bGwsbnVsbCxudWxsLG51bGwsbnVsbCxudWxsLG51bGwsIkVrY0tKREV3TnpFMU1qRm1MVFZoWWpRdE5EbGlPUzA1TURGbExUTmlPREZoT0RsbE9ESmtZUklmYjNveWNEUldPVk5XZGpSbVRVbG5SM0JuU1V4dVVERkphMFIxVnpSU1p3PT0iXQ=="
alt="A drill monkey"
title="The beauty of national parks!"/>
</body>
</html>