-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimages.html
More file actions
40 lines (34 loc) · 1.31 KB
/
images.html
File metadata and controls
40 lines (34 loc) · 1.31 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
33
34
35
36
37
38
39
40
<br><a href="index.html">Back to Home</a>
<! - -
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
Name : images.html
Assignment : Lab 2 Exercise B
Author ( s ) : Naveed Khan, Saif Youssef
Submission : Jan 24 , 2024
Description : A simple HTML file .
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
<!DOCTYPE html>
<html>
<head>
<title>Image Demonstration</title>
<meta charset="UTF-8">
<meta name="description" content="An HTML example with img tags">
<meta name="keywords" content="HTML, Web Development, Example, img">
<meta name="author" content="Your Name">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<h1>Image Format Demonstration</h1>
<h2>JPEG Image</h2>
<p>This is a standard JPEG image:</p>
<img src="images/example.jpg" alt="Example JPEG Image" width="500">
<!-- Continue extra codes here -->
<h2>GIF Image</h2>
<p>This is a standard GIF image:</p>
<img src="images/example.gif" alt="Example GIF Image" width="500">
<h2>SVG Image</h2>
<p>This is a standard SVG image:</p>
<img src="images/example.svg" alt="Example SVG Image" width="500">
</body>
</html>
<br><a href="./">Back to Home</a>