-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (36 loc) · 1.26 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
<html>
<head>
<meta charset="UTF-8">
<title>ScrabbleRabble - Calculate word scores for Scrabblegames</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="page">
<div id="sidebar">
<div id="logo">
<p1 class="logo_text">Scrabble</p1>
<p1 class="logo_text">Rabble</p1>
<p1 class="logo_text" id="undertext">A simple calculator for word scores in Scrabble</p1>
</div>
<div id="footer">
<p1>Rob Hagen</p1>
</div>
</div>
<div id="hero">
<div id="div_textfield">
<input type="text" id="userInput">
</div>
<div id="div_button">
<button type="button" id="button">Calculate value</button>
</div>
<div id="word_output">
<p> </p>
</div>
<div id="word_score_output">
<p>You have yet to enter a word...</p>
</div>
</div>
</div>
<script type="text/javascript" src="./scripts.js"></script>
</body>
</html>