-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (22 loc) · 755 Bytes
/
index.html
File metadata and controls
24 lines (22 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title>Dictionary</title>
<script type="text/javascript" src="logic.js"></script>
<link rel="stylesheet" href="stylesheet.css" type="text/css" />
</head>
<body>
<div id="header"> Online Web Dictionary</div>
<div id= "main">
<div id= "search">
<form onsubmit="ajax_request();return false;">
<input type="text" placeholder="ajax" id="search_box"/>
<button type="button" onclick="ajax_request()">Search</button>
</form>
</div>
<span>Results</span>
<div id="response">
</div>
</div>
</body>
</html>