26 lines
474 B
HTML
26 lines
474 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<style>
|
|
body {
|
|
background-color: #3B5998;
|
|
}
|
|
</style>
|
|
|
|
<h2><font color="white">Who Would you like to search for</h2>
|
|
|
|
<input type="radio" name="type" value="number">Search By Number<br>
|
|
<input type="radio" name="type" value="name">Search By Name<br>
|
|
|
|
<textarea autofocus rows="1" cols="50">
|
|
</textarea>
|
|
|
|
<form action="/action_page.php">
|
|
<input type="text" name="usrname"><br>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|
|
|