-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphotos.htm
116 lines (106 loc) · 4.63 KB
/
photos.htm
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
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>Leo Szeto - Photos</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Quickly get screen width and height -->
<script type="text/javascript">
var w = screen.width;
var h = screen.height;
</script>
<!-- Le styles -->
<link href="css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 80px;
padding-bottom: 40px;
}
</style>
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="">
<link rel="apple-touch-icon-precomposed" href="">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,700,600' rel='stylesheet' type='text/css'>
</head>
<body id="home" class="hasGoogleVoiceExt">
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="index.php"><img src="img/Logo_1.png" alt="your slogan here"></a>
<div class="nav-collapse">
<ul class="nav">
<li><a href="index.php" class="anchorLink">Home</a></li>
<li><a href="index.php#portfolio_h" class="anchorLink">Portfolio (Hardware)</a></li>
<li><a href="index.php#portfolio_s" class="anchorLink">Portfolio (Software)</a></li>
<li><a href="index.php#portfolio_n" class="anchorLink">Hobbies</a></li>
<li><a href="index.php#awards" class="anchorLink">Awards</a></li>
<li><a href="assets/Leo Szeto Resume.pdf" class="anchorLink">Resume</a></li>
<li><a href="index.php#contact" class="anchorLink">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<!-- Main hero unit for a primary marketing message or call to action -->
<div class="row">
<div class="span12">
<div id="myCarousel" class="carousel slide">
<div class="carousel-inner">
<div class="item active">
<img src="img/photo_1.jpg" alt="">
</div>
<div class="item">
<img src="img/photo_2.jpg" alt="">
</div>
<div class="item">
<img src="img/photo_3.jpg" alt="">
</div>
<div class="item">
<img src="img/photo_4.jpg" alt="">
</div>
</div>
<a class="left carousel-control" href="#myCarousel" data-slide="prev">‹</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">›</a>
</div>
</div>
<div class="span">
<h2>Photography</h2>
<p>
I purchased my first DSLR camera during late 2009; A used Nikon D200. With the blessings and old gear of my dad (Who was also a Nikon user), I set forth to learn more about the wonderful world of photography and capture moments in my life. The above slideshow is a showcase of some of these moments that I'd like to share.
</p>
<hr>
<footer>
<p>Leo Szeto 2012</p>
</footer>
</div> <!-- /container -->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap-transition.js"></script>
<script src="js/bootstrap-alert.js"></script>
<script src="js/bootstrap-modal.js"></script>
<script src="js/bootstrap-dropdown.js"></script>
<script src="js/bootstrap-scrollspy.js"></script>
<script src="js/bootstrap-tab.js"></script>
<script src="js/bootstrap-tooltip.js"></script>
<script src="js/bootstrap-popover.js"></script>
<script src="js/bootstrap-button.js"></script>
<script src="js/bootstrap-collapse.js"></script>
<script src="js/bootstrap-carousel.js"></script>
<script src="js/bootstrap-typeahead.js"></script>
<script src="js/anchor.js" type="text/javascript"></script>
</body></html>