-
Notifications
You must be signed in to change notification settings - Fork 0
/
wordChoice.html
45 lines (38 loc) · 1.84 KB
/
wordChoice.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
<!-- © 2015 Arian Flores All Rights Reserved
All rights reserved. No part of this code may be reproduced, distributed, or transmitted in any form or by any means,
including photocopying, recording, or other electronic or mechanical methods, without the prior written permission of the creator, except
in the case of brief quotations embodied in critical reviews and certain other noncommercial uses permitted by copyright law.
For permission requests, write to the creator,addressed “Attention: Permissions Coordinator,” at the address below.
AirMan inc
6330 QuickSilver Avenue
San Francisco, CA 94560
www.arianflores.com -->
<!DOCTYPE html>
<html>
<head>
<title>Mad Libs</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="js/MadLib.js"></script>
<script src="js/Story.js"></script>
</head>
<body>
<div id="headDiv" class="container">
<a href="index.html"><div id="page2img"><img id="pic1" class= "headerPic" src=" images/MadLibs-Logo.png"></div></a>
<form id="wordForm" class="form-horizontal">
<center id="headWord"><label><h3 id="headTag"></h3></label></center>
<div id="wordInputField" class= "form-group col-xs-7 text-center">
<input class="form-control" id="wordPush" type="text" name='word' placeholder="Your word here" autocomplete="off" required>
<input id="submitBtn" class="btn btn-primary" type="submit" value="SUBMIT" >
</div>
</form>
<div id="storyBoard"></div>
</div>
<footer id="footer">
<div class="row">
<a class="footerNote" href="index.html" target="_self">MadLibs</a><span class="glyphicon glyphicon-copyright-mark" aria-hidden="true"></span><p class="footerDate" >2016</p>
</div>
</footer>
</body>
</html>