JSFiddle - React, Tailwind, and code Playground
by holdoffhunger
HTML
<html>
<head>
<title>Coffee Shop</title>
</head>
<body>
<form action="POST">
Size:
<select name="size">
<option>small</option>
<option>medium</option>
<option>big</option>
</select><br>
<hr>
Options:<br>
Extra Sugar - <input type="checkbox" name="extra-sugar"><br>
Extra Cream - <input type="checkbox" name="extra-cream"><br>
Decaff - <input type="checkbox" name="decaff"><br>
Whipped Cream - <input type="checkbox" name="whipped-cream"><br>
<hr>
<input type="submit">
</form>
<hr>
</body>
</html>