Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mmyoungman committed Feb 18, 2019
0 parents commit f48232b
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions gds-checkboxes.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<html>
<head>
<title>Checkbox Example</title>
</head>

<style>
html {
font-size: 62.5%;
}

.checkbox {
height: 3rem;
margin-bottom: 1rem;
}

input {
height: 3rem;
margin: 0;
width: 3rem;
}
</style>

<body>
<div class="checkbox">
<input type="checkbox" /> <label>Example checkbox label</label>
</div>

<div class="checkbox">
<input type="checkbox" /> <label>Another checkbox label</label>
</div>
</body>
</html>

0 comments on commit f48232b

Please sign in to comment.