-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (50 loc) · 2.1 KB
/
Copy pathindex.html
File metadata and controls
59 lines (50 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description" content="Junwoo Lee's personal website">
<title>Junwoo Lee</title>
<link rel="icon" href="images/favicon-32x32.png" type="image/png">
<link rel="icon" href="images/favicon.ico"/>
<link rel="apple-touch-icon" href="favicon.png">
<link rel="stylesheet" href="./css/style.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
</head>
<body>
<header>
<nav>
<a href="index.html">Home</a>
<a href="#projects">Projects</a>
<a href="about.html">About</a>
<!-- <a href="#experience">Projects</a> -->
</nav>
<h1>Junwoo Lee</h1>
<p><i>joon-oo</i></p>
<div class="social-icons">
<a href="https://drive.google.com/file/d/1hcBuexTYUCJLhSJxHvrk2183o77LmRdNIsh8t4hk1sY/view?usp=sharing" target="_blank"><i class="fa-solid fa-file"></i></a>
<a href="https://github.com/junwo-o" target="_blank"><i class="fa-brands fa-square-github"></i></a>
<a href="https://www.linkedin.com/in/junwoolee21/" target="_blank"><i class="fa-brands fa-linkedin"></i></a>
<a href="mailto:lee.junwoo@berkeley.edu" target="_blank"><i class="fa-solid fa-envelope"></i></a>
</div>
<!-- <img src="images/logo.png" alt="Logo"> -->
</header>
<main>
<p><s>Work Smarter, not Harder</s><br>Work Smarter AND Harder</p>
<!-- <div id="experience">
<h2>Work Experience</h2>
<p>Coming soon — internships, job roles, and what I learned from them.</p>
</div> -->
<div id="projects">
<h2>Projects</h2>
<p>My web apps and builds</p>
</div>
</main>
<footer>
© <span id="year"></span> Junwoo Lee
</footer>
<!-- script link just before <\body> tag in order to have html render before the script runs or errors -->
<script src="./js/experiments.js"></script>
<script src="./js/script.js"></script>
</body>
</html>