forked from SaiKiranMatta/HTF23-Team-0
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex5.html
31 lines (27 loc) · 937 Bytes
/
index5.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style5.css">
<title>Food Finder</title>
</head>
<body>
<div class="container">
<img class="img" src="webpage.jpeg" alt="main pic">
<div class="centered">
<h1>ONLINE COOKBOOK</h1> <br>
<h2>INGREDIENT AND RECIPE BASED SEARCH ENGINE</h2>
<form>
<input type="text" id="search" placeholder="Enter dish name or ingredients">
<button type="button" id="submit" class="btn">Search</button>
</form>
</div>
<div id="results"></div> <br>
<a id="c" href="contact.html">-Contact Us </a>
<a href="about.html"> -About Us</a>
</div>
<script src="script5.js"></script>
</body>
</html>