Skip to content

Instantly share code, notes, and snippets.

@TomGranot
Last active March 29, 2020 13:07
Show Gist options
  • Save TomGranot/b1c973ce91d6de9c6d6b06d7749559dc to your computer and use it in GitHub Desktop.
Save TomGranot/b1c973ce91d6de9c6d6b06d7749559dc to your computer and use it in GitHub Desktop.
Shopify App Dev From Scratch - HTML Wiring
<html>
<head>
<title>
Countries We Ship Button
</title>
</head>
<body>
<div class="container">
<div class="header">
<h1>Countries We Ship To Button</h1>
</div>
<div class="prompt">
<p>Please select the type of button you'd like to create:</p>
</div>
<div class="typeContainer">
<div class="singleButtonType">
<div class="type1Example">
</div>
<input type="checkbox" value="type1">Type 1
</div>
<div class="singleButtonType">
<div class="type2Example">
</div>
<input type="checkbox" value="type2">Type 2
</div>
</div>
<div class="toggleButton">
<button>Toggle</button>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment