-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
32 lines (30 loc) · 1.1 KB
/
test.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Color Reference Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
<script src="node_modules/phoenix/priv/static/phoenix.js"></script>
<script src="interactiveexptest.js"></script>
</head>
<body>
<h3 id="title">Color Reference Game</h3>
<p id="instructions"></p>
<div id="chat-box"></div>
<label for="participant-role" id="participant-role"></label>
<form id="chat-form">
<textarea
placeholder="Send message to the other participant."
id="participant-msg"
></textarea>
<button type="submit">Send</button>
</form>
<div class="color-container">
<div class="color-div color-div-1"></div>
<div class="color-div color-div-2"></div>
<div class="color-div color-div-3"></div>
</div>
</body>
</html>