-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (42 loc) · 1.73 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-1.18.0.css">
<link rel="stylesheet" href="/main.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<title>Unscrabble</title>
<meta name="viewport" content="initial-scale = 1.0,maximum-scale = 1.0" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,600" rel="stylesheet" type="text/css">
</head>
<body>
<div id="header-area">
<div id="logo-border">
<div id="logo">
<h1 id="title-text">UNCR_SSW_RD</h1>
</div>
</div>
<div id="inputBoxes">
<input maxlength="1" size="1" type="text" class="inputs" id="search1">
<input maxlength="1" size="1" type="text" class="inputs" id="search2">
<input maxlength="1" size="1" type="text" class="inputs" id="search3">
</div>
<div id="input-buttons">
<button id="plus-button" class="pm-buttons" value="Plus">+</button>
<button id="minus-button" class="pm-buttons" value="Minus">-</button>
<button id="clear-button" class="pm-buttons" value="Clear">x</button>
</div>
</div>
<div id="results-box">
<div id="results">
<button id="enterPrompt">Enter some letters!</button>
</div>
</div>
<div id="dictionary"></div>
<div id="twitter-box"></div>
<div id ="footer"><p>© <script>new Date().getFullYear()>2010&&document.write("-"+new Date().getFullYear());</script>, JMNR Blog.</p></div>
<script src="/test/frontendtests.js"></script>
<script src="/index.js"></script>
<script src="/apis.js"></script>
</body>
</html>