-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (105 loc) · 4.89 KB
/
index.html
File metadata and controls
108 lines (105 loc) · 4.89 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- Site Metadata Start-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="Abraham Chen">
<meta name="description" content="Personal website for Abraham Chen">
<!-- Site Metadata End -->
<!-- Favicon Code Start -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#3b606b">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- Favicon Code End -->
<!-- Preloading Content Start -->
<link rel="preload" as="font" href="/webfonts/fa-solid-900.woff2" type="font/woff2" crossorigin="anonymous">
<link rel="preload" as="font" href="/webfonts/fa-brands-400.woff2" type="font/woff2" crossorigin="anonymous">
<!-- Preloading Content End -->
<!-- Async Loading Content Start -->
<!-- <link rel="stylesheet" href="/styles/style.css" media="print" onload="this.media='all'; this.onload=null;"> -->
<link rel="stylesheet" href="/styles/style.min.css" media="print" onload="this.media='all'; this.onload=null;">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Vollkorn:wght@700&display=swap" media="print" onload="this.media='all'; this.onload=null;">
<link rel="stylesheet" href="/styles/fontawesome-all.min.css" media="print" onload="this.media='all'; this.onload=null;">
<!-- Async Loading Content End -->
<script src = "/scripts/project-loader.js"></script>
<!-- <script src = "/scripts/project-loader.min.js"></script> -->
<title>Abraham Chen | Developer </title>
</head>
<body>
<header>
<nav class="menu-wrap">
<input type="checkbox" class="toggler" aria-label = "menu">
<div class="burger"><div></div></div>
<div class="menu">
<div>
<div>
<ul class="nav-links">
<li><a class = "nav-link" href="#home">Home</a></li>
<li><a class = "nav-link" href="#projects">Projects</a></li>
<li><a class = "nav-link" href="#contact">Contact</a></li>
<li><a class = "nav-link" href="/documents/Resume_AC.pdf" target="_blank" rel="noopener noreferrer">Resume</a></li>
</ul>
</div>
</div>
</div>
</nav>
<div class="logo-wrap" id = "home">
<img class="logo" src="/apple-touch-icon.png" alt="icon" height="180" width="180">
<h1 class="logo-text">Abraham Chen</h1>
<div id="visits-display">
<strong>Getting Visits Data...</strong>
</div>
<div id="color-theme">
<p>Theme</p>
<input type="radio" name="theme-picker" class="theme" id="theme-light" checked="checked">
<label for="theme-light"></label>
<input type="radio" name="theme-picker" class="theme" id="theme-dark">
<label for="theme-dark"></label>
</div>
</div>
</header>
<div id="bg-image-wrap">
<main>
<section id = "projects">
<h1>Projects</h1>
<div id="project-wrap">
<div class = "project" id="project-0">
<h2 class="title">Illud</h2>
<p class="subtitle">Smart Text Editor | Java</p>
<p class="caption" id="caption-0"></p>
<div class="repo-stats" id="repo-stats-0"></div>
</div>
<div class = "project" id="project-1">
<h2 class="title">CaptiveFi</h2>
<p class="subtitle">Automating Wifi Logins | Python</p>
<p class="caption" id="caption-1"></p>
<div class="repo-stats" id="repo-stats-1"></div>
</div>
<div class = "project" id="project-2">
<h2 class="title">Cerberus</h2>
<p class="subtitle">Analyzing Security Footage | Python</p>
<p class="caption" id="caption-2"></p>
<div class="repo-stats" id="repo-stats-2"></div>
</div>
</div>
</section>
</main>
<footer id = "contact">
<div>
<a href="mailto:abrahamhchen@gmail.com" aria-label = "Email link"><i class="fa fa-border fa-envelope"></i></a>
<a href="https://github.com/inviro" aria-label = "Github link"><i class="fab fa-border fa-github"></i></a>
<a href="https://www.linkedin.com/in/abraham-h-chen" aria-label = "Linkedin link"><i class="fab fa-border fa-linkedin"></i></a>
</div>
<p>
Designed by Abraham Chen
</p>
</footer>
</div>
</body>
</html>