-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFile1.html
27 lines (25 loc) · 898 Bytes
/
File1.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
<!-- This is the first html code -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>File 1</title>
</head>
<body>
<h1><b>Controlling Image Border and size</b></h1>
<center>
<h2><i>Image Without a BORDER</i></h2>
<img src="/Lab Work/pic1 (3).jpg" alt="Freefire" height="10%" width="10%"/>
<h2><i>Image With BORDER = 3</i></h2>
<img border=3 src="/Lab Work/callofduty.jpg" alt="Call of Duty" height="10%" width="10%" />
</center>
<h2>Normal Image Size</h2>
<center>
<img src="/Lab Work/OIP (1).jpeg" alt="Games of Throne" />
<h2><i>Image With Size (Height and Width) set to 200</i></h2>
<img src="/Lab Work/OIP (1).jpeg" alt="Games of Throne" height="200" width="200"/>
<br>
</center>
</body>
</html>