-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject2.html
More file actions
69 lines (52 loc) · 1.73 KB
/
Copy pathproject2.html
File metadata and controls
69 lines (52 loc) · 1.73 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Dog Blog</title>
<link rel="stylesheet" type="text/css" href="css/main.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
</head>
<body>
<header>
<h1>Dog Blog</h1>
</header>
<section class="input">
<input id="searchterm" type="text" size="20" maxlength="50" autofocus value="Mark" />
<select id="interest">
<option value="Fetching">Fetching</option>
<option value="Borking">Borking</option>
<option value="Run v fast">Run v fast</option>
<option value="Lay around">Layaround</option>
</select>
<select id="age">
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
</select>
</section>
<section class="input">
<button type="button" id="search">Search Blogs</button>
</section>
<section id="rows">
<div id="column1">
</div>
<div id="column2">
<p>No dogs yet!</p>
<!-- posts, with dates, go here-->
</div>
</section>
<footer>
<p>© Kent Reese and Drake Richards </p>
<a href= "documentation.html"><p>Documentation</p></a>
</footer>
<script src="js/main.js"></script>
</body>
</html>