Last active
March 12, 2016 00:13
-
-
Save DeskWOW/3231b382c7934e4cf842 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<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