-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelative_proximity.html
36 lines (30 loc) · 1.45 KB
/
relative_proximity.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Collab Settings</title>
<meta name="description" content="Settings for the collaborative writing Google Docs extension">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="settings.css">
</head>
<body>
<a href="settings.html">Back</a>
<h1>Relative Proximity Settings</h1>
<fieldset>
<legend>Presentation Options</legend>
<br>
<input type="radio" id="rp_presentation_one" name="rp_presentation">
<label for="rp_presentation_one">Off</label><br>
<input type="radio" id="rp_presentation_two" name="rp_presentation">
<label for="rp_presentation_two">Spoken Announcement</label><br>
<input type="radio" id="rp_presentation_three" name="rp_presentation">
<label for="rp_presentation_three">Typing sound</label><br>
<input type="radio" id="rp_presentation_four" name="rp_presentation">
<label for="rp_presentation_four">Musical Note Pitch Change</label><br>
<input type="radio" id="rp_presentation_five" name="rp_presentation">
<label for="rp_presentation_five">Musical Note Volume Change</label><br>
</fieldset>
<script src="relative_proximity_settings.js"></script>
<script src="settings.js"></script>
</body>
</html>