-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
30 lines (30 loc) · 964 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jennie's Personal Website</title>
<link rel="stylesheet" href="style.css">
<script src="javascript.js"></script>
</head>
<header>
<h1 id="title">Jennie Choi</h1>
<nav>
<ul>
<li><a class="home" href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<body>
<main>
<img src="brooklyn.jpg" alt="Jennie in Brooklyn" id="photo"/>
<h2>Hello, my name is Jennie.
<br>Welcome to my website!</h2>
<br>
<h3>“Fight for the things that you care about, but do it in a way that will lead others to join you.” - Ruth Bader Ginsburg</h3>
</main>
</body>
</html>