-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimages.html
More file actions
36 lines (36 loc) · 1.39 KB
/
images.html
File metadata and controls
36 lines (36 loc) · 1.39 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
<!--
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
Name : images.html
Assignment : Lab 2 Exercise B
Author ( s ) : Hongwoo Yoon, Hyunmyung Park
Submission : Jan 24 , 2024
Description : A simple HTML file.
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
-->
<!DOCTYPE html>
<html>
<head>
<title> Image Demonstration </title>
<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 ="Hongwoo Yoon, Hyunmyung Park">
<link rel ="shortcut icon" href ="favicon.ico" type ="image/x-icon">
</head>
<body>
<h1>Image Format Demonstration</h1>
<br><a href="index.html">Back to Home</a>
<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>SVG Iamge</h2>
<p>This is a standard SVG image:</p>
<img src ="images/example.svg" alt ="Example SVG Image" width="500">
<h2>GIF Iamge</h2>
<p>This is a standard GIF image:</p>
<img src ="images/example.gif" alt ="Example SVG Image" width="500">
<br><a href="./">Back to Home</a>
</body>
</html>