-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path05_links_images.html
42 lines (35 loc) · 1.04 KB
/
05_links_images.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
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Links & Images</title>
</head>
<body>
<!-- External Link -->
<p>
<a href="http://google.com">Click for Google</a>
</p>
<p>
<a href="http://google.com" target="_blank">Click for Google in a new tab</a>
</p>
<a href="http://facebook.com">Click for Facebook</a>
<!-- Internal Link -->
<p>
<a href="04_typography.html">Typography</a>
</p>
<!-- Local Image -->
<img src="./images/sample.jpg" alt="My Image" width="200">
<!-- Local image with link -->
<br>Image with link
<br>
<a href="https://www.lakeviewlifestyle.com/">
<img src="./images/sample.jpg" alt="My Image" width="200"></a>
<!-- Remote Image -->
<br>
<center> Image with unsplash</center>
<br>
<img src="https://source.unsplash.com/200x200/?food" alt="My Image 2">
</body>
</html>