-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (63 loc) · 2 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
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
<!doctype html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-118879070-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-118879070-2');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="H. Hernan Saez Personal Website">
<meta name="author" content="H. Hernan Saez">
<link rel="icon" href="img/favicon.ico">
<title>H. Hernan Saez</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
<script src="js/projects.js" type="text/javascript"></script>
<script src="js/social.js" type="text/javascript"></script>
</head>
<body onload="populateProjects(); populateSocial();">
<main role="main">
<div class="header">
<div class="container">
<div class="row align-items-center">
<div class="col-sm-2">
<img src="img/avatar.PNG" class="avatar"></img>
</div>
<div class="col-sm-10">
<h1 class="title">H. HERNAN SAEZ</h1>
<h3 class="subtitle">"Fly me to the moon"</h3>
</div>
</div>
<div class="row">
<div class="col">
</div>
</div>
<div class="row align-items-center">
<div class="col-sm">
<p class="bio">A standard nerd with a passion for programming, video games, comics, science
fiction and robotics. I spend most of
my free time refactoring Crimild, my game engine project and personal obsession, hoping that
it will reach a stable
version one day.</p>
</div>
</div>
</div>
</div>
<div class="social"></div>
<hr>
<div class="container" id="projects"></div>
<hr>
<div class="social"></div>
<hr>
</main>
<footer class="container">
<p>© H. Hernan Saez | hhsaez@gmail.com</p>
</footer>
</body>
</html>