-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
20 lines (20 loc) · 942 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Interactive Box Model</title>
<link rel="stylesheet" href="style.css"/>
<script src="https://code.jquery.com/jquery-2.2.3.js" integrity="sha256-laXWtGydpwqJ8JA+X9x2miwmaiKhn8tVmOVEigRNtP4=" crossorigin="anonymous"></script>
</head>
<body>
<div class="wrapper">
<div id="box">I am a box.</div>
</div>
<div id="controls">
<label>Padding</label><input id="padding" type="number" value="10"></input>
<label>Margin</label><input id="margin" type="number" value="10"></input>
<label>Border</label><input id="border" type="number" value="1"></input>
</div>
<footer>Brought to you by Arielle Vaniderstine. Find me on <a href="https://github.com/arirawr">Github</a> and <a href="https://twitter.com/imariari">Twitter</a>.</footer>
<script src="script.js"></script>
</body>
</html>