-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (42 loc) · 1.57 KB
/
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
40
41
42
43
44
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link rel="stylesheet" href="style.css">
<script src="js/jquery-3.5.1.min.js"></script>
<script type="text/javascript" src="query.js"></script>
<meta charset="utf-8">
<title>Alexa Webpage</title>
<!--eylink rel="stylesheet" href="style.css">-->
</head>
<body class="block" bgcolor = #a5e3f2>
<h1 id="header1">Alexa Webpage with Button</h1>
<h2 id="header2">This is a mock website</h2>
<!--<div class="container"> <!--container class has limited width
<button class="btn btn-header" type="button">Talk to Alexa</button></div>-->
<form class="login" action="query.js" id="request">
<!--<label id="input" for="Username">Username:</label>-->
<input type="text" id="Username" placeholder="Username"><br><br>
<button class="button" type="submit" value="Submit" id="SubmitButton">Submit</button>
<button class="button" type="Get entry" value="Get" id="getdata">Get entry</button>
</form>
<table class="container" id="myTable">
<thead>
<tr><!--HTML <tr> tag defines a row in an HTML table.-->
<th><h1>ID</h1></th> <!--<th> HTML element defines a cell as header of a group of table cells-->
<th><h1>Feelings</h1></th>
<th><h1>Rating</h1></th>
<th><h1>Date</h1></th>
</tr>
</thead>
<tbody class="table_data">
<!--<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>-->
</tbody>
</table>
<div id="result"></div>
</body>
</html>