-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.php
47 lines (25 loc) · 858 Bytes
/
index.php
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
<!doctype html>
<html lang="en">
<head>
<?php include("../inc/meta.php") ?>
<link rel="stylesheet" href="style.css" type="text/css">
<title>Search App</title>
<?php include("../inc/header.php") ?>
<h1><span>Wikipedia Search Engine</span></h1>
</div>
<div id="canvas" class="container group">
<div id="primaryContent" class="group">
<form id="searchForm">
<input id="searchInput" type="text" autocomplete="off">
<button for="search">Search</button>
</form>
<div id="resultsList"></div>
</div> <!-- main content -->
<!--
<div id="secondaryContent">
</div><!-- right col content -->
</div>
<?php include("../inc/footer.php") ?>
<script src="script.js"></script>
</body>
</html>