-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (67 loc) · 2.66 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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personal Site - Home</title>
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" href="css/addon.css" />
<script src="js/vendor/modernizr.js"></script>
</head>
<body>
<nav class="top-bar spacer" data-topbar role="navigation">
<ul class="title-area">
<li class="name"><h1><a href="">Personal Site</a></h1></li>
<li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li>
</ul>
<section class="top-bar-section">
<ul class="right">
<li class="active"><a href="">Home</a></li>
</ul>
</section>
</nav>
<div class="row">
<div class="small-12 small-centered columns end">
<div class="panel radius">
<h3 class="text-center">Welcome to Michael Huynh's personal website!</h3>
<h4 class="text-center"><a href="https://github.com/mhuynh5757">Here</a> is my GitHub. For the time being, all code is licensed under the MIT license.</h3>
</div>
</div>
</div>
<div class="row">
<div class="small-12 small-centered columns end">
<div class="panel radius">
<h4 class="text-center">Chat Webserver</h4>
<p class="text-center"><a href="img/webChat.png"><img src="img/webChat.png"/></a></p>
<p class="text-center">View it live <a target="_blank" rel="noopener noreferrer" href="http://chat.garbage.house">here</a>!</p>
<p class="text-center">Or perhaps the source code <a href="https://github.com/mhuynh5757/Garbage-House-Chat">here</a>?</p>
</div>
</div>
</div>
<div class="row">
<div class="small-12 small-centered columns end">
<div class="panel radius">
<div class="row">
<h4 class="text-center">Chat Program</h4>
</div>
<div class="row">
<div class="small-6 columns">
<p class="text-center"><a href="https://www.dropbox.com/s/4b1scgjwob49uti/Chat%20Client.jar?dl=0">Chat Client Download</a></p>
<p class="text-center"><img src="img/clientScreenshot.png"/></p>
</div>
<div class="small-6 columns end">
<p class="text-center"><a href="https://www.dropbox.com/s/lpf3bexoql59q3p/Chat%20Server.jar?dl=0">Chat Server Download</a></p>
<p class="text-center"><img src="img/serverScreenshot.png"/></p>
</div>
</div>
<p class="text-center">Source code <a href="https://github.com/mhuynh5757/mhuynh5757.github.io/tree/master/src">here</a>.</p>
</div>
</div>
</div>
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>