-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (75 loc) · 3.61 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/sociallinks.css" />
<link rel="stylesheet" href="css/loadingscreen.css" />
<link rel="stylesheet" href="css/panels.css" />
<link rel="shortcut icon" type="image/png" href="images/github-pfp-round.png"/>
<meta property="og:title" content="Nafee Jan"/>
<meta property="og:image" content="images/code.jpg"/>
<meta property="og:description" content="Hi I'm Nafee"/>
<meta property="og:url" content="nafeej.github.io"/>
<script src="https://kit.fontawesome.com/bd0058c027.js" crossorigin="anonymous"></script>
<title>Nafee Jan</title>
</head>
<body id="body">
<div id="loading-screen">
<div class="lds-ellipsis"><div></div><div></div><div></div><div></div></div>
</div>
<header class="header">
<h1 class="header-text"> Nafee
<br>
<span class="type-text" data-delay="2000" data-words='["Jan", "Workshop"]'></span>
<span id="cursor"></span>
</h1>
<div class="nav-buttons">
<ul>
<li><a id="aboutme-button">About Me</a></li>
<li><a id="projects-button">Projects</a></li>
<li><a href="https://docs.google.com/document/d/1xNgjt-AygmbL3iVVE8Ojh7Rxr_HI_qeLZOsFpiLB7Vo/edit?usp=sharing" target="_blank">Resume</a></li>
</ul>
</div>
</header>
<div class="panel" id="projects-panel">
<div class="panel-overlay" id="projects-panel-overlay"></div>
<div class="panel-content" id="projects-panel-content">
<button class="panel-close-button" id="projects-panel-close-button"><i class="fas fa-times"></i></button>
<div class="cards"></div>
</div>
</div>
<div class="panel" id="aboutme-panel">
<div class="panel-overlay" id="aboutme-panel-overlay"></div>
<div class="panel-content" id="aboutme-panel-content">
<button class="panel-close-button" id="aboutme-panel-close-button"><i class="fas fa-times"></i></button>
<div class="aboutme">
Hi I'm Nafee
</div>
<div class="aboutme">
Graduate of computer science from the University of Pittsburgh
</div>
<div class="aboutme">
Most of my projects are open source which you can see in the projects section and on my GitHub.
</div>
<div class="aboutme">
I've worked with are web dev, MacOS dev, game dev with Unity, cloud computing, software quality, and human-computer design.
</div>
<div class="aboutme">
Aspiring to work in software engineering.
</div>
</div>
</div>
<footer>
<div class="social-links">
<ul>
<li><a href="https://github.com/NafeeJ" target="_blank"><i class="fab fa-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/nafee-jan-ba55971a6/" target="_blank"><i class="fab fa-linkedin-in"></i></a></li>
</ul>
</div>
</footer>
</body>
<script src="js/main.js"></script>
</html>