-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path7_Images.html
More file actions
29 lines (24 loc) · 821 Bytes
/
7_Images.html
File metadata and controls
29 lines (24 loc) · 821 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
<!-- Working with images
<<Can link images from your device or from internet.
<<src attribute used to give location of image.
<<alt used in case image doesn't load.
Note: While setting width and height, you can choose to only set
either width or height.
By only setting one, HTML will automatically adjust the aspect
ratio for you.
So if you only set width="100", HTML will automatically resize
the height correctly.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Images</title>
<meta name='Description' content='This is awesome website!!'>
</head>
<body>
<a href="https://www.google.com">
<img src="Images/Pic.jfif" alt="Anime" width="400">
</a>
</body>
</html>