-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
276 lines (258 loc) · 12.6 KB
/
index.html
File metadata and controls
276 lines (258 loc) · 12.6 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Andrew Guang - Ladies Man</title>
<!-- default bootstrap: style your page like twitter -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
<!-- theme files: used to style over default bootstrap -->
<!-- try themes from: https://startbootstrap.com/-->
<!-- <link rel="stylesheet" type="text/css" href="theme.css"> -->
<!-- <link rel="stylesheet" type="text/css" href="theme2.css"> -->
<!-- <link rel="stylesheet" type="text/css" href="theme3.css"> -->
<!--<link rel="stylesheet" type="text/css" href="theme4.css"> -->
<!-- font awesome -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/fontawesome/4.7.0/css/font-awesome.min.css">
<!-- animate.css: used to apply quick css animations -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/animatecss/3.5.2/animate.min.css">
<!--our own custom css overrides-->
<link rel="stylesheet" href="custom.css">
</head>
<body>
<!-- to disable sticking bar to screen, remove class: navbar-fixed-top -->
<nav class="navbar navbar-default navbar-fixed-top">
<!--Give navbar padding-->
<div class="container-fluid">
<div class="navbar-header">
<!-- hamburger button. do not touch! -->
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"
aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- HOME BUTTON: REPLACE href="#" with your landing page url -->
<a class="navbar-brand" href="#">
<!-- PUT BRAND LOGO / ICON HERE (instead of font-awesome -->
<i class="fa fa-cog"></i> Tinder
</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<!-- THIS UL HANDLES OUR LINKS -->
<ul class="nav navbar-nav navbar-right">
<!--<li><a href="http://facebook.com">About Me</a></li>-->
<!--<li><a href="http://facebook.com">Contact</a></li>-->
<!-- to make more links, make some <li> in here -->
</ul>
</div>
</div>
</nav>
<hr>
<hr>
<div class="my-parallax">
<div class="container-fluid">
<!--Row 2: Mock Tinder-->
<div class="row">
<!--Row 2 / Col 1: Carousel-->
<div class="col-xs-12 col-sm-5">
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="Images/Carousel-1.jpg" alt="Carousel Image 1" class="carouselimage">
<div class="carousel-caption">
<h3> Casual Shot. Definitely Not Posing. </h3>
</div>
</div>
<div class="item">
<img src="Images/Carousel-2.jpg" alt="Carousel Image 2" class="carouselimage">
<div class="carousel-caption">
<h3> Great Outdoors. Do you even lift? I do. </h3>
</div>
</div>
<div class="item">
<img src="Images/Carousel-3.jpg" alt="Carousel Image 3" class="caoruselimage">
<div class="carousel-caption">
<h3> The Boys. My bestfriend to my left - your right. </h3>
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="row">
<!--Row 2 / Col 1: About-->
<div class="col-xs-12 col-lg-5">
<ul class="list-inline">
<li><h2>Andrew,</h2></li>
<li><h3>27</h3></li>
</ul>
<h4> Monash University </h4>
<ul class="list-inline">
<li><h5>7,000kms Away</h5></li>
<li><h6>Active 1 hour ago</h6></li>
</ul>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-7">
<h2>About Andrew</h2>
<hr>
<p><h4>My perfect date night: I pick you up. In my Kia Sorrento. You get in. There’s candles in the car. You go, ‘…Is that dangerous?’ and I go, ‘Yes—but I like danger.’</h4></p>
<br>
<p><h4>We go to your favorite restaurant, and we have a fantastic meal. We come outside and we see my car’s on fire. You go, ‘Andrew, your car’s on fire. Aren’t you upset?’ I pull out a bag of marshmallows and I go, ‘No. I knew this was gonna happen.’</h4></p>
<br>
<p><h4>And then I kiss you. In front of my burning car.</h4></p>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<ul class="list-inline text-center">
<!--Place all items on an inline block-->
<li>
<a href="#" class="tindercross">
<i class="fa fa-times fa-5x"></i></a>
<!--Without theming, icons will show up as blue as default link color in blue-->
</li>
<li>
<a href="#" class="tindertick">
<i class="fa fa-heart fa-5x"></i></a>
</li>
</ul>
</div>
</div>
</div>
<!--start of row 3-->
<div class="row">
<!--start of row 3 column 1-->
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<!-- video at 16:9 aspect ratio -->
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/T437DdmFNPU?autoplay=1&loop=1&playlist=T437DdmFNPU"></iframe>
</div>
<!--end video-->
</div>
<!--end of row 3 column 1-->
</div>
<!--end of row 3-->
<hr>
<!--start of row 4-->
<div class="row">
<!--start of row 4 column 1-->
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
<div class="panel panel-default text-muted">
<div class="panel-body">
<form>
<legend>Do It</legend>
<div class="form-group">
<label for="name-id">Name</label>
<input class="form-control" type="text" name="name" id="name-id" placeholder="frank">
</div>
<div class="form-group">
<label for="email-id">Email</label>
<input class="form-control" type="email" name="email" id="email-id" placeholder="sexy@gmail.com">
</div>
<div class="form-group">
<div class="radio">
<label>
<input type="radio" name="newsletter" value="weekly" checked="checked">
Dinner Sounds Good (*You Pay*)
</label>
<div class="radio">
<label>
<input type="radio" name="newsletter" value="never">
Netflix and Chill (*You Must Have Netflix*)
</label>
</div>
</div>
</div>
<input type="submit" class="btn btn-primary">
</form>
</div>
</div>
</div>
<!--end of row 4 column 1-->
<!--start of row 4 column 2-->
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 text-center">
<h1 class="text-primar animated swing infinite">Basic Requirements</h1>
<!--Only animates once-->
<hr>
<p>You must be a woman. </p>
</div>
<!--end of row 4 column 2-->
<!--end of row 4-->
</div>
<hr>
<!--start of row 5-->
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-4">
<h3 class="text-center">Opening Hours</h3>
<table class="table table-hover table-striped table-bordered">
<tr>
<th>Day</th>
<th>Hours</th>
</tr>
<tr>
<td>Monday to Friday</td>
<td>6pm - 12am</td>
</tr>
<tr>
<td>Saturday</td>
<td>8am - 12am</td>
</tr>
<tr>
<td>Sunday</td>
<td>10am-10pm</td>
</tr>
</table>
</div>
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-4">
<div class="embed-responsive embed-responsive-4by3">
<iframe class="responsive-embed" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3150.522076796374!2d145.18344731531982!3d-37.848072979746206!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6ad63edef43585b9%3A0xdd4e5d7a5f9deb8b!2s3+Gwyn+Rise%2C+Vermont+South+VIC+3133%2C+Australia!5e0!3m2!1sen!2ssg!4v1500705430248"></iframe>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-4">
<h3>Check me out</h3>
<div class="list-group">
<a href="tel:+61431693566" class="list-group-item">
<i class="fa fa-phone fa-fw" aria-hidden="true"></i>  +61 431693566
</a>
<a href="mailto:andrewhuang1@deloitte.com.au ?subject=Tinder&body=EOI" class="list-group-item">
<i class="fa fa-envelope fa-fw" aria-hidden="true"></i>  andrewhuang1@deloitte.com.au
</a>
<a href="https://instagram.com/huangingout" class="list-group-item">
<i class="fa fa-telegram fa-fw" aria-hidden="true"></i>  t.instagram.com/huangingout
</a>
</div>
</div>
</div>
<!--end of row 5-->
<hr>
</div>
</body>
<!-- jquery: used by bootstrap.js -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/jquery/3.1.1/jquery.min.js"></script>
<!-- bootstrap js: used to run fancy components like carousel -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
<!-- wow.js: used to make animate.css run on view -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/wow/1.1.2/wow.min.js"></script>
<script>
new WOW().init();
</script>
</html>