-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (47 loc) · 2.01 KB
/
index.html
File metadata and controls
51 lines (47 loc) · 2.01 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="UTF-8">
<meta name = "viewport" content="width=device-width, initial-scale = 1.0">
<meta name="author" content="Emma Wong">
<meta name="keywords" content="Carnegie Mellon University, Information Systems">
<meta name="description" content="Emma Wong's professional website">
<title>Emma Wong</title>
<link rel="stylesheet" href="static/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script>
<script src="./static/script.js" defer></script>
</head>
<body onload="addYear()">
<header>
<h1> Emma Wong </h1>
<nav>
<a href="index.html">Home</a>
<a href="views/cv.html">CV</a>
<a href="views/contact.html">Contact Me</a>
<a href="views/fun.html">For Fun</a>
</nav>
</header>
<div class="main">
<h2 id = "greeting"> Hi</h2>
<img src="static/MyImage.jpg" alt="A picture of [Your Preferred Name]" width="200">
<p id="intro">
Welcome to my website! I'm a student at Carnegie Mellon University, pursuing Information Systems.
I enjoy web development, cybersecurity, AI, and new technologies.
</p>
<section id="toggleSection">
<p id="shortBio">
This is my short bio. <button id="readMore">Read More</button>
</p>
<p id="fullBio" style="display: none;">
Here is more detailed info about me... <button id="readLess">Read Less</button>
</p>
</section>
</div>
<footer>
<p id="copyYear">Designed and Coded By Emma Wong</p>
</footer>
</body>
</html>