-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (31 loc) · 954 Bytes
/
index.html
File metadata and controls
33 lines (31 loc) · 954 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
30
31
32
33
<!--
=========================================================
Name : index.html
Assignment : Lab 2 Exercise E
Author(s) : Hongwoo Yoon, Hyunmyung Park
Submission : Jan 24, 2024
Description : A simple HTML website with different tags.
=========================================================
-->
<!DOCTYPE html>
<html>
<head>
<title>Comprehensive HTML Examples</title>
<meta charset="UTF-8">
<meta name="description" content="A comprehensive HTML example with various tags">
<meta name="keywords" content="HTML, Web Development, Examples">
<meta name="author" content="Hongwoo Yoon, Hyunmyung Park">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<header>
<h1>Welcome to My HTML website</h1>
</header>
<nav>
<ul>
<li><a href="news.html">News</a></li>
<li><a href="images.html">Images</a></li>
</ul>
</nav>
</body>
</html>