-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (47 loc) · 1.65 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gabriel Altay</title>
<link rel="icon" href="favicon_io/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="main.css">
<script src="circuit-board.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZEN3CM576G"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-ZEN3CM576G');
</script>
</head>
<body>
<div class="container">
<div class="header">
<circuit-board rotation="90"></circuit-board>
<h1><span>Gabriel</span><br><span>Altay</span></h1>
<circuit-board></circuit-board>
</div>
<p>Greetings, netrunner. You've found my personal corner of cyberspace.</p>
<div class="section">
<h2>Blog</h2>
I write about <a href="https://galtay.github.io/blog" target="_blank" rel="noopener noreferrer">things I learn</a>.
</div>
<div class="section">
<h2>Skills</h2>
<ul>
<li>Machine Learning</li>
<li>Physics</li>
<li>Biology</li>
<li>Coding</li>
</ul>
</div>
<div class="section">
<h2>Education</h2>
<p>Ph.D. Physics, Carnegie Mellon University (2005 - 2009)</p>
<p>B.S. Physics, Illinois State University (1998 - 2002)</p>
</div>
</div>
</body>
</html>