-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (67 loc) · 2.68 KB
/
Copy pathindex.html
File metadata and controls
79 lines (67 loc) · 2.68 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<html>
<head><title>EchoMyNotes - Amazon Polly</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Hind|Lato" rel="stylesheet">
</head>
<style>
{ margin: 0; padding: 0; }
html {
background: url('https://i.stack.imgur.com/jGlzr.png') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</style>
<body><h1 style="font-family:Hind, sans-serif; text-align: center;">Welcome to EchoMyNotes!</h1>
<p style="font-family:Lato, sans-serif; text-align: center;font-size: 20px">Student platform to share audio notes with the ability to connect with an Amazon Echo <br />Made with Serverless Architecture, Amazon Lambda, DynamoDB, API Gateway and S3</p>
<div id="content">
<p style="font-family:Lato, sans-serif; font-size: 15px;font-weight: bold;">Student Name:</p>
<select id="voiceSelected">
<option value="Ivy">Ivy</option>
<option value="Joanna">Joanna</option>
<option value="Joey">Joey</option>
<option value="Justin">Justin</option>
<option value="Kendra">Kendra</option>
<option value="Kimberly">Kimberly</option>
<option value="Salli">Salli</option>
<option value="Nicole">Nicole</option>
<option value="Russell">Russell</option>
<option value="Emma">Emma</option>
<option value="Brian">Brian</option>
<option value="Amy">Amy</option>
<option value="Raveena">Raveena</option>
<option value="Geraint">Geraint</option>
<option value="Ricardo">Ricardo</option>
</select>
<input type="submit" value="Add Notes" id="sayButton" class="buttons">
<span id="postIDreturned"></span>
</br></br>
<textarea id ="postText"></textarea>
<span id="charCounter">Characters: 0</span>
</br></br></br></br>
<input type="submit" class="buttons" value="Search Class Notes" id="searchButton">
<br/>
</div>
<table id="posts">
<colgroup>
<col style="width:10%">
<col style="width:12%">
<col style="width:40%">
<col style="width:8%">
<col style="width:30%">
</colgroup>
<tbody>
<tr>
<th>Post ID</th>
<th>Student Name</th>
<th>Post</th>
<th>Status</th>
<th>Player</th>
</tr>
</tbody>
</table>
<script src="scripts.js?v=1.1"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
</body>
</html>