-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (26 loc) · 780 Bytes
/
index.html
File metadata and controls
34 lines (26 loc) · 780 Bytes
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
<!DOCTYPE html>
<!-- HTML5 Hello world by kirupa - http://www.kirupa.com/html5/getting_your_feet_wet_html5_pg1.htm -->
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>Hangman</title>
<!--<link rel="stylesheet" href="../bower_components/bootstrap/dist/css/bootstrap.css">-->
<!--<link rel="stylesheet" href="main.css" type="text/css" />-->
</head>
<body>
<div id="mainContent">
<!--<p id="helloText">?</p>
<button id="clickButton" class="buttonStyle">click me</button>-->
<h3>Hangman: Enter Word</h3>
<form id="inputForm">
Enter: <input type="text" maxlength="1" name="Word" id="TextId" />
<input type="button" onclick="inputWrite()" value="Press">
</form>
<div id="DisplayWord">
</div>
</div>
<script>
</script>
<script src="app.js"></script>
</body>
</html>