Skip to content

Instantly share code, notes, and snippets.

@DeskWOW
Last active March 12, 2016 00:13
Show Gist options
  • Save DeskWOW/3231b382c7934e4cf842 to your computer and use it in GitHub Desktop.
Save DeskWOW/3231b382c7934e4cf842 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>My Canvas App</title>
<!-- stylesheet -->
<link rel="stylesheet" type="text/css" href="https://necolas.github.io/normalize.css/3.0.2/normalize.css">
</head>
<body>
<h3>Please select the product related to this case</h3>
<form>
<div>
<input type="radio" name="products" value="Shoes">Shoes</input>
</div>
<div>
<input type="radio" name="products" value="jeans">Jeans</input>
</div>
<div>
<input type="radio" name="products" value="jacket">Jacket</input>
</div>
<div>
<input type="radio" name="products" value="shirts">Shirt</input>
</div>
<div>
<input type="radio" name="products" value="shorts">Shorts</input>
</div>
<input type="submit" value="Save">
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment