-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (33 loc) · 863 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>random name</title>
<link rel="stylesheet" href="assets/stylesheet/style.css">
</head>
<body>
<div class="container">
<div class="still-to-speak">
<h2>still to speak</h2>
<hr/>
<ul class="" id="toSpeak">
</ul>
</div>
<div class="input-field">
<div id="para">
<input id="input" placeholder="enter a name">
</div>
<div>
<button class="btn" type="button" name="button" onclick="displayName()">show name</button>
</div>
</div>
<div class="spoken" id="spoken-container">
<h2>already spoken</h2>
<hr/>
<ul id="spoken">
</ul>
</div>
</div>
<script src="assets/js/index.js"> </script>
</body>
</html>