-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 980 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Megan Chiu</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="javascript.js"></script>
</head>
<body>
<header>
<nav id="'header-links">
<ul>
<li><a class="nav-links" href="index.html">Home</a></li>
<li><a class="nav-links" href="about.html">About</a></li>
<li><a class="nav-links" href="portfolio.html">Portfolio</a></li>
</ul>
</nav>
</header>
<main>
<img id="about-me-img" src="./images/smiley.png" />
<h1>Hi, my name is Megan Chiu.</h1>
<p class="intro">
Welcome to my page. I am currently enrolled in the Web Development
program at FullStack Academy.
</p>
<h3 class="inspirational-quote">
“The more that you read, the more things you will know. The more that
you learn, the more places you’ll go.” ― Dr. Seuss
</h3>
</main>
</body>
</html>