Skip to content

Instantly share code, notes, and snippets.

@TomGranot
Created March 29, 2020 13:07
Show Gist options
  • Save TomGranot/bc3b612b39134ae5138dd437ed2f2d11 to your computer and use it in GitHub Desktop.
Save TomGranot/bc3b612b39134ae5138dd437ed2f2d11 to your computer and use it in GitHub Desktop.
Shopify App Dev From Scratch - HTML Wiring V2
<html>
<head>
<link rel="stylesheet" href="styles.css">
<title>
Countries We Ship Button
</title>
</head>
<body>
<div class="container">
<div class="headerContainer">
<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>
<div class="singleButtonType1">
<div class="type1Example">
<button class="type1Button">Countries We Ship To Button</button>
</div>
<input type="checkbox" value="type1">Type 1
</div>
<div class="singleButtonType2">
<div class="type2Example">
<button class="type2Button">Countries We Ship To Button</button>
</div>
<input type="checkbox" value="type2">Type 2
</div>
<div class="toggle">
<button class="toggleButton">Toggle</button>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment