-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
31 lines (28 loc) · 1.15 KB
/
Copy pathindex.php
File metadata and controls
31 lines (28 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Welcome to Doodle</title>
<meta name="description" content="Search the Web for sites and images.">
<meta name="keywords" content="Search engine, doodle, websites">
<meta name="author" content="@rubeeengm">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div class="wrapper indexPage">
<div class="mainSection">
<div class="logoContainer">
<img src="assets/images/doodleLogo.png" title="Logo of our site" alt="Site logo">
</div>
<div class="searchContainer">
<form action="search.php" method="GET">
<input type="text" class="searchBox" name="term">
<input type="submit" class="searchButton" value="Search">
</form>
</div>
</div>
</div>
</body>
</html>