-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (73 loc) · 2.75 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!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>Foundation | Welcome</title>
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" href="font-awesome-4.1.0/css/font-awesome.css">
</head>
<body>
<nav class="top-bar">
<ul class="title-area">
<li class="name"><h1><a href="index.html">Anthony Ho</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><a href="about.html"> About</a></li>
<li><a href="http://zeromondays.com"> Blog</a></li>
<li><a href="#"> Contact</a></li>
</ul>
</section>
</nav>
<hr/>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<div class="panel">
<h2>
Hello
</h2>
<h3> I am Anthony Ho, an aspring front-end developer and iOS developer
</h3>
<img src="img/lighthouse.jpg">
</div>
</div>
</div>
</div>
<hr/>
<div class="row">
<div class="large-12 columns">
<h2> Current Project</h2>
<h4> iOS app in concept stage:</h4>
<p> <strong>Jinx</strong> - a social calendar app integrated with instant messaging, voice messaging and file sharing.
<break>
<p>
Share your schedule with friends and family to stay connected
</p>
</break>
<p>Privacy: Hide or invite selected contacts to view your calendar</p>
<h4> Ideal for:</h4>
<ul> <li>Group outings</li>
<li>Families</li>
<li>Collaborative Projects</li>
<li>Meetings</li>
<li>Organising Events</li>
</ul>
</p>
</div>
</div>
<hr/>
<div class="medium-10 columns">
<p> <a href="http://twitter.com/ahomnky11"><i class="fa fa-twitter"></i> Follow me on twitter</a></p>
</div>
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script src="js/foundation/foundation.topbar.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>