Last active
June 1, 2017 16:55
-
-
Save kasundharmadasa/557e32e28e1897008a0f950ca6bd25e8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Liquor Store</title> | |
</head> | |
<body> | |
<center> | |
<h1> | |
Select the type of Liquor | |
</h1> | |
<form method="post" action="SelectLiquor"> | |
<br> | |
<select name="Type" size="1"> | |
<option>WINE</option> | |
<option>WHISKY</option> | |
<option>BEER</option> | |
</select> | |
<br><br> | |
<input type="submit"> | |
</form> | |
</center> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment