-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.36 KB
/
index.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
28
29
30
31
32
33
34
<html>
<head>
<title> My HTML Project </title>
</head>
<body>
<header>
<h1>
Wengsing's Webpage
</h1>
<nav>
<strong>Home</strong>
<a href = "AboutMe.html">About Me</a>
<a href = "ComicsArchives.html">Comics Archives</a>
<!--
"Home" represents the homepage. It will display the latest comics I have uploaded to the site.
"About Me" links to a page listing some information about me, as well as my contact information
(professional email, LinkedIn, GitHub).
"Comics Archives" links to the older comics that were moved from the homepage. As I add more
content, it might be necessary to add a submenu for months or years.
-->
</nav>
</header>
<section>
<h3>
Message From the Creator:
</h3>
<p>
Hi! Wengsing here. Welcome to my webpage! As you can see, the site is still under construction and
will probably stay that way for awhile. Don't worry though; I'm working hard behind the scenes to
get the site up and running. Thanks for your patience!
</p>
</section>
</body>
</html>