-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello.html
More file actions
66 lines (62 loc) · 3.07 KB
/
hello.html
File metadata and controls
66 lines (62 loc) · 3.07 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
<!doctype html>
<html class="no-js" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello!</title>
<link rel="stylesheet" href="css/foundation.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body onload="location.href='#container'">
<div id="container">
<div class="row">
<div class="large-12 small-12 columns small-centered text-center">
<canvas id="pixie" class="hide-for-small-only hide-for-medium-only"></canvas>
<h1>Hello!</h1>
<h2><strong>My name is Roxy</strong></h2>
<div class="circle small-centered small-4">
<img src="FrontFacingAnimation.svg" />
</div>
<div class="large-8 small-centered">
<p id="about">
When I was younger, my dream was to be a fish. Unfortunately,
as I got older I realized this was an impossible dream. So I began
looking towards other career opportunities.
</p>
</div>
<div class="row">
<div class="large-6 columns small-centered">
<a href="#" data-reveal-id="flipper"><img src="Hexagon Timeline.svg" /></a>
</div>
<div id="flipper" class="reveal" data-reveal aria-labelledby="videoModalTitle" aria-hidden="true" role="dialog">
<h2 id="flipperTitle">Meet Flipper, the Autonomous Robot</h2>
<div class="flex-video middle">
<video width="300" height="240" frameborder="0" src="IMG_6467.mp4" type="video/mp4" muted controls></video>
</div>
</div>
</div>
<div class="row middle">
<form action="something.php">
<div class="large-8 columns text-center small-centered">
<label>Feedback Form</label>
<textarea type="text" placeholder="Anything (constructive please!)"></textarea>
<input type="submit" class="button" value="Submit" />
</div>
</form>
</div>
</div>
</div>
</div>
<div class="row footer" style="padding: 10px">
<div class="large-12 text-right">
<p style="color:gray; font-size:10px;">Thank you for visiting!</p>
</div>
</div>
<script src="js/vendor/jquery.js"></script>
<script src="js/vendor/what-input.js"></script>
<script src="js/vendor/foundation.js"></script>
<script src="js/app.js"></script>
<script src="js/index.js"></script>
</body>
</html>