-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
82 lines (82 loc) · 4.47 KB
/
about.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
<script src="script.js" defer></script>
<script src="https://use.fontawesome.com/9df4536e0c.js"></script>
</head>
<body>
<section class="one-screen">
<nav id="about-nav">
<!-- <a href="index.html"><img src="images/logo.png"></a> -->
<!-- <a href="index.html"><img src="images/HelpButton.png"></a> -->
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()"></i>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="projects.html">PROJECTS</a></li>
<li><a href="experience.html">EXPERIENCE</a></li>
<li><a href="about.html">ABOUT</a></li>
</ul>
</div>
<i id="menu-icon" class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<div class="invisible-box">
<div class="text-background about-header">Hello!</div>
<div class="about-body">
<div class="about-section">
<div class="text-background">About Me</div>
<p>I'm Spencer, a computer science graduate based in Singapore. I've dabbled in different areas within the field: game development,
software engineering, web development. I feel that this is one of my strong points, having experience in a bunch of domains as it helps me in understanding
other developers.
<br><br>
I also like to push myself to make sure that my work is satisfactory and will not be satisfied if I feel that there is something that I can improve on.
I'm excited to learn new technologies and concepts and make things that bring joy or convenience to others!
</p>
</div>
<div class="about-section">
<div class="text-background">Background</div>
<p>Graduated from the National University of Singapore with a <span id="terms">Bachelor of Computing (Computer Science) with Honours (Merit)</span>
with a focus in Computer Graphics and Games. Here are some of my relevant coursework.</p>
<div class="module-container">
<div class="border-radius-text tag-algo">Data Structures and Algorithms</div>
<div class="border-radius-text tag-algo">Design and Analysis of Algorithms</div>
<div class="border-radius-text tag-gamedev">Game Development</div>
<div class="border-radius-text tag-gamedev">Computer Graphics</div>
<div class="border-radius-text tag-gamedev">Graphics Rendering Techniques</div>
<div class="border-radius-text tag-ai">Introduction to Artificial Intelligence</div>
<div class="border-radius-text tag-ai">Machine Learning</div>
<div class="border-radius-text tag-ai">Natural Language Processing</div>
<div class="border-radius-text tag-db">Database Systems</div>
</div>
</div>
</div>
</div>
<div class="about-body">
<div class="about-bottom">
If there's anything you'd like to contact me about, you can do so through my email at <span id="terms">[email protected]</span>
</div>
</div>
</div>
</section>
<script>
var navLinks = document.getElementById("navLinks");
function showMenu() {
navLinks.style.width = "125px";
navLinks.style.right = "0";
}
// CURRENTLY CLOSE MENU TRANSITION DOESNT WORK
function hideMenu() {
// value corresponds to navLinks value in styles.css
navLinks.style.width = "0px";
navLinks.style.right = "-125px";
}
</script>
</body>
</html>