-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 2.01 KB
/
index.html
File metadata and controls
46 lines (46 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
<!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="Jaimin Fee">
<meta name="keywords" content="Carnegie Mellon University, Information Systems">
<meta name="description" content="Jaimin Fee professional website">
<title>Jaimin Fee</title>
<link rel="stylesheet" href = "../static/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script defer src="../static/script.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body onload = "addYear()">
<header>
<h1 id="webname">Jaimin Fee</h1>
<nav id="myTopnav" class="topnav">
<a href= "index.html" class = "active">Home</a>
<a href = "cv.html">CV</a>
<a href= "contact.html">Contact Me</a>
<a href= "fun.html">For Fun</a>
<a href="javascript:void(0);" class="icon" >
<i class="fa fa-bars" onclick = "activeNav()"></i>
</a>
</nav>
</header>
<div class = "main">
<h2 id = "greeting"> </h2>
<img class = "classA" src="../static/headshot.png" alt="Jaimin Fee" width="250px" height = "550px">
<!--<p id = "intro">I am a student-athlete in the Information Systems program
at Carnegie Mellon University. Also, I play on the CMU Men's Soccer Team.
</p>-->
<div class="classA">
<span id="shortIntro">Lorem ipsum dolor sit amet, so on and so forth….</span>
<span id="readMore"> read more ...</span>
<span id="longIntro">Lorem ipsum dolor sit amet, so on and so forth…</span>
<span id="readLess"> read less</span>
</div>
</div>
<footer>
<p id = "copyYear">Jaimin Fee ©</p>
</footer>
</body>
</html>