-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (47 loc) · 2.28 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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>What's your ski bum name?</title>
<!--Bootstrap-->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="ski_name.css">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-backstretch/2.0.4/jquery.backstretch.min.js"></script>
<script src="ski_name.js"></script>
</head>
<body>
<div class="container">
<div class="row header-container">
<div class="col-md-6 col-md-offset-3">
<h1 class="text-center">Find out your ski bum name!</h1>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="well">
<form role="form">
<div class="form-group">
<label for="initials">Enter your initials</label>
<input type="text" autofocus="autofocus" class="form-control" id="initials" name="initials" maxlength="3" placeholder="Enter your initials here"></input>
</div>
</form>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="name-container alert alert-success">
<h4 class="text-center">Your ski bum name is:</h4>
<h1 id="the-name" class="text-center"></h1>
</div>
</div>
</div>
<span class="footer-text"><a target="_blank" href="http://www.github.com/tspike/ski_name"><img src="octocat.png"></img><a target="_blank" rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br><span>Source code is <a href="http://creativecommons.org/licenses/by-nc-sa/4.0/">open source</a> Flatirons image proprietary, © Tres Spicher</span></span>
</div>
</body>
</html>