-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (69 loc) · 2.59 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
<!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" />
<title>Will Jin</title>
<link rel="shortcut icon" href="static/img/wjlogo_nbg.png" />
<link rel="stylesheet" href="static/css/main.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://kit.fontawesome.com/a9dd5ac0e6.js"></script>
</head>
<body>
<header>
<div class="nav-logo">
<a href="index.html"
><img src="static/img/wjlogo_nbg.png" alt="logo" />
</a>
</div>
<div class="nav-social">
<a href="https://www.linkedin.com/in/willjin1796/" target="_blank"
><i class="fab fa-linkedin"></i
></a>
<a href="https://github.com/wjin17" target="_blank">
<i class="fab fa-github-square"></i
></a>
</div>
</header>
<section class="landing">
<div class="center-content">
<h4>Hi, my name is</h4>
<h1>Willie Jin</h1>
<h6>Nice to meet you!</h6>
</div>
</section>
<section class="summary" id="#lala">
<h1>Welcome to my site!</h1>
<p>
I recently graduated from Arizona State University with a BSE in
Electrical Engineering back in May 2019. After junior year of college, I
discovered web development and I was hooked. Since then, I have been
teaching myself as much as possible about full stack development, mostly
in Javascript. Aside from circuits and coding, I really enjoy growing
plants, reading, weight lifting, playing board games, hanging out with
my friends, and most importantly, eating delicious food!
</p>
<h4>More information can be found in the about section!</h4>
<div class="about-container">
<a href="about.html">ABOUT</a>
</div>
</section>
<div class="fingerprint-nav">
<button class="fingerprint">
<i class="fas fa-fingerprint"></i>
</button>
<div class="nav-resume nav-item-container">
<a href="resume.html" class="nav-resume nav-item">RESUME</a>
</div>
<div class="nav-projects nav-item-container">
<a href="projects.html" class="nav-item">PROJECTS</a>
</div>
<div class="nav-about nav-item-container">
<a href="about.html" class="nav-about nav-item">ABOUT</a>
</div>
</div>
<script src="static/js/main.js"></script>
<script src="static/js/pageTransition.js"></script>
</body>
</html>