-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (63 loc) · 2.49 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
<!DOCTYPE html>
<html>
<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>What'd You Say?</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/cerulean-bootstrap.min.css">
<link rel="stylesheet" href="css/site.css">
</head>
<body>
<div class="container">
<h1 class="text-center">What'd You Say?</h1>
<div id="home">
<div id="logo" class="row text-center">
<img src="img/what.gif" />
</div>
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<div class="form-group">
<label class="control-label" for="message"><h3>Type the sentence you would like to GIF-code:</h3></label>
<input type="text" class="form-control" id="message" placeholder="e.g. You look nice today.">
</div>
</div>
</div>
<div class="row text-center">
<button id="go-btn" class="btn btn-lg btn-success" type="button">Go!</button>
</div>
<div class="row pull-right">
<ul class="pager">
<li><a href="#">I would like to guess instead →</a></li>
</ul>
</div>
</div>
<div id="code-message" class="text-center collapse">
<div id="words-collection" class="row">
<div class="col-sm-8 col-sm-offset-2">
<ul class="pager"></ul>
</div>
<div class="col-sm-offset-2">
<button id="preview-btn" class="btn btn-success btn-lg">Preview →</button>
</div>
</div>
<div id="gifs">
<div class="row">
</div>
</div>
</div>
<div id="preview" class="row text-center collapse">
<h3>Here is a preview of your GIF-coded message:</h3>
<div id="gifs-row" class="row"></div>
<div class="row">
<div class="pull-left">Back</div>
<div class="pull-right">Submit</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.1.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="main.js"></script>
</body>
</html>