-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (36 loc) · 1.28 KB
/
index.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
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cook•Along App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header id="hero">
<nav>
<h1 id="appName">COOK•ALONG</h1>
</nav>
</header>
<form id="searchForm">
<fieldset id="searchField">
<div id="formHeader">
<h2>WHAT RECIPE DO YOU WANT?</h2>
</div>
<label for="foodName">Input a term to browse instructional videos, and follow along with the preparation of specific recipes.</label>
<input type="text" id="foodName" name="foodName" placeholder="ex: Beef">
<input type="submit" id="search" name="search-button" value="Search" >
<div id="non-search">
<button id="recent" name="recent-button">Recent</button>
<button id="browse" name="browse-button">Browse</button>
</div>
</fieldset>
</form>
<section class="hidden">
<ul id="results">
</ul>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="script.js"></script>
</body>
</html>