-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompanies.html
40 lines (38 loc) · 902 Bytes
/
companies.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Companies</title>
<link rel="stylesheet" href="companies.css">
</head>
<body>
<header>
<nav>
<ul>
<a href="index.html">Home</a>
<a href="#">Events</a>
<a href="#">Jobs</a>
<a href="#">Charleston</a>
</ul>
</nav>
<h1>Companies</h1>
<form action="#">
<p>Search:</p>
<input class="search" type="search" name="search" placeholder="Enter Keyword"/>
<input class="submit" type="submit" value="search"/>
</form>
<form action="#">
<p>What kind of car would you prefer?</p>
<select name="devices">
<option value="BMW">BMW</option>
<option value="Audi">Audi</option>
<option value="Mini Cooper">Mini Cooper</option>
</select>
</form>
</header>
<section>
</section>
<footer>
</footer>
</body>
</html>