-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 890 Bytes
/
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search Radio Stations</title>
<link rel="stylesheet" type="text/css" href="fonts.css" >
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<header>
Internet Radio Stations
</header>
<nav><strong>Links</strong></nav>
<section>
<h3>Search Radio Station</h3>
<p>You may search by name or type</p>
<form method="post" action="search.php?go" id="searchform">
<input type="text" name="name">
<input type="submit" name="submit" value="Search">
</form>
</section>
<article>
<p> article goes here </p>
</article>
<footer>
<strong> Copyright Warren Earle </strong>
</footer>
</body>
</html>