-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 746 Bytes
/
index.html
File metadata and controls
27 lines (27 loc) · 746 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
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document Search</title>
<style>
table {
margin: auto;
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 8px;
border: 1px solid black;
text-align: center;
}
</style>
</head>
<body>
<h1 style="text-align: center">Enter the terms to be searched</h1>
<form action="process.php" method="POST" style="text-align: center">
<input type="text" id="input" name="input" required>
<button type="submit">Submit</button>
</form>
</body>
</html>