-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (65 loc) · 3.05 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
<!DOCTYPE html>
<html>
<head>
<title>Howard Nguyen</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-50380640-1', 'howardanguyen.com');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="navbar-wrapper">
<div class="container">
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="jumbotron">
<div class="container">
<div class="row">
<div class="col-md-8">
<h2>Howard Anh Hao Nguyen</h2>
<h3>howardanguyen AT berkeley DOT edu</h3>
<hr>
<p> Hi! I'm a junior studying electrical engineering and computer science at UC Berkeley. I'm a big programming amateur and computer science wannabe. While you're here, please take a look at my <a href="projects.html"> projects </a> and<a href="Resume.pdf"> resume</a>! </p>
<p> When I'm not getting destroyed by Cal, I really enjoy learning how to make new applications and projects. I've recently become obsessed about tweaking and configuring <i>everything</i> in my Arch Linux setup. Like actually, everything. It's really becoming unhealthy. </p>
<p>You might ask me if I do anything but loaf around in front of my computer. The answer to that is no. Because I recently bought a tablet. I loaf around in front of that too. Just kidding. Maybe. But seriously speaking, I also enjoy building things, especially with wood, in my spare time. Other than that I just like eating and running.</p>
</div>
<div class="col-md-4">
<img src="img/profile.jpg" alt="profile picture" class="img-circle">
</div>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery-1.10.2.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>