forked from helfi92/studorlio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
100 lines (93 loc) · 3.49 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<title>Jonathan Ly | About Me</title>
<!-- css files -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.3.1/css/bulma.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/styles.css">
<!-- Source: https://www.artstation.com/artwork/LWDKl -->
<link rel="icon" type="image/x-icon" href="assets/img/favicon.png">
<meta name="author" content="Jonathan Ly">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!-- Navbar -->
<nav class="nav container void-background">
<!-- This "nav-menu" is hidden on mobile -->
<!-- Add the modifier "is-active" to display it on mobile -->
<div class="nav-left">
<a href="http://github.com/jly02" class="nav-item">
<span class="icon">
<i class="fa fa-github"></i>
</span>
</a>
<a href="https://twitter.com/pandaly02" class="nav-item">
<span class="icon">
<i class="fa fa-twitter"></i>
</span>
</a>
</div>
<div class="nav-right nav-menu">
<a class="nav-item" href="index.html">Home</a>
<a class="nav-item" href="about.html">About</a>
<a class="nav-item" href="articles.html">Articles</a>
<a class="nav-item" href="social.html">Social</a>
</div>
<!-- This "nav-toggle" hamburger menu is only visible on mobile -->
<!-- You need JavaScript to toggle the "is-active" class on "nav-menu" -->
<span class="nav-toggle">
<span></span>
<span></span>
<span></span>
<span></span>
</span>
</nav>
<!-- About Me -->
<section id="about" class="section section-1">
<div class="container has-text-centered">
<!-- Source: https://i.natgeofe.com/k/75ac774d-e6c7-44fa-b787-d0e20742f797/giant-panda-eating_square.jpg -->
<img class="avatar" src="assets/img/profile.png">
</div>
<div class="container"></br>
<h3 style="font-weight: bold; text-align: center;">
Jonathan Ly
</h3>
<br>
<p class="intro">
Hi! I'm Jonathan, a current student at the University of Washington studying computer science.
I am interested in theoretical computer science broadly, particularly computability and complexity
theory, logic and programming languages, and formal methods in software.
</p>
<br>
<p class="intro">
I have secondary interests in areas of applied mathematics, specifically in numerical methods and
partial differential equations.
</p>
<br>
<p class="intro">
I am currently a teaching assistant for <a href="http://courses.cs.washington.edu/courses/cse421/24au/">CSE 421: Introduction to Algorithms</a>
in the Paul G. Allen School of Computer Science and Engineering.
</p>
<br>
<p class="intro">Want to talk? Please contact me via LinkedIn!</p>
</div>
</section>
<!-- Social -->
<section id="social" class="section section-3">
<div class="container">
<div class="social-container columns">
<div class="linkedin">
<a target="_blank" href="https://www.linkedin.com/in/jly02/"><img class="" src="assets/img/linkedin.png"></a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<section class="section-4 has-text-centered container">
<a href="https://www.linkedin.com/in/jly02/">Contact Me</a>
</section>
<!-- Scripts -->
<script src="controller.js"></script>
</body>
</html>