Last active
March 29, 2020 13:07
-
-
Save TomGranot/b1c973ce91d6de9c6d6b06d7749559dc to your computer and use it in GitHub Desktop.
Shopify App Dev From Scratch - HTML Wiring
This file contains 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> | |
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