forked from letterly/letterly.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenglish.html
23 lines (23 loc) · 932 Bytes
/
english.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="english.css">
<link rel="shortcut icon" href="favicon.ico?">
<title>English</title>
</head>
<body>
<div id="main">
<h1>Harris' English Site ^^</h1>
<div id="plurals" onclick="start(this.id)">Plurals</div>
<div id="past" onclick="start(this.id)">Past Tense</div>
<div id="participle" onclick="start(this.id)">Past Participles</div>
<div id="ambi" onclick="start(this.id)">American and British Spelling</div>
</div>
<div id="lesson">
<p id="question"><span id="leq">What is the plural of</span> <span id="keyword">calf</span>?</p>
<input id="leinput" placeholder="type here" />
<button id="button" onclick="enter()">Enter</button>
</div>
</body>
<script src="english.js"></script>
</html>