-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheducation.html
82 lines (82 loc) · 3.97 KB
/
education.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css">
<title>Aiji Li | Education</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body>
<nav>
<div class="nav-container">
<div class="logo" data-aos="zoom-in" data-aos-duration="1000">
<a href="index.html"><span>Aiji</span></a>
</div>
<div class="links">
<div class="link"><a href="index.html">Home</a></div>
<div class="link"><a href="education.html">Education</a></div>
<div class="link"><a href="experience.html">Experience</a></div>
<div class="link"><a href="projects.html">Projects</a></div>
<div class="link"><a href="skills.html">Skills</a></div>
<div class="link contact-btn">
<a href="mailto:[email protected]?subject=Contact%20Aiji%20Li&body=Hi%20Aiji,%20">
Contact Me
</a>
</div>
</div>
<i class="fa-solid fa-bars hamburg" onclick="hamburg()"></i>
</div>
<div class="dropdown">
<div class="links">
<a href="index.html">Home</a>
<a href="education.html">Education</a>
<a href="experience.html">Experience</a>
<a href="projects.html">Projects</a>
<a href="skills.html">Skills</a>
<a href="mailto:[email protected]?subject=Contact%20Aiji%20Li&body=Hi%20Aiji,%20">Contact Me</a>
<i class="fa-solid fa-xmark cancel" onclick="cancel()"></i>
</div>
</div>
</nav>
<section>
<div class="main-container resume-section">
<div class="content">
<h1 data-aos="fade-up" data-aos-duration="1000">Education</h1>
<div class="resume-item" data-aos="fade-right" data-aos-duration="1000" data-aos-delay="200">
<h2>University of California, Berkeley</h2>
<h3>Berkeley, CA</h3>
<p><strong>Degree:</strong> Bachelor's in Computer Science, Minor in Data Science</p>
<p>
<strong>Honors and Awards:</strong> Regents' and Chancellor's Scholarship (Top 2% of Admitted Class),
Cal Alumni Association Leadership Award 2023 (<1% Acceptance)
</p>
<p><strong>Relevant Coursework: </strong>Data Structures, Structure and Interpretation of Computer Programs, Efficient Algorithms and Intractable Problems,
Great Ideas in Computer Architecture (Machine Structures), Principles and Techniques of Data Science, Introduction to Artificial Intelligence, Discrete Mathematics and Probability Theory,
Linear Algebra and Differential Equations, Entrepreneurship, Principles of Engineering Economics</p>
</div>
<div class="resume-item" data-aos="fade-left" data-aos-duration="1000" data-aos-delay="400">
<h2>Los Altos High School</h2>
<h3>Los Altos, CA</h3>
<p><strong>Graduation Year:</strong> 2023</p>
</div>
</div>
</div>
</section>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({offset: 0});
</script>
<script>
function hamburg(){
const navbar = document.querySelector(".dropdown")
navbar.style.transform = "translateY(0px)"
}
function cancel(){
const navbar = document.querySelector(".dropdown")
navbar.style.transform = "translateY(-500px)"
}
</script>
</body>
</html>