-
Notifications
You must be signed in to change notification settings - Fork 843
/
Copy pathcookbook-template.html
36 lines (31 loc) · 1.05 KB
/
cookbook-template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>CSS Cookbook: template</title>
<link rel="stylesheet" href="styles.css" />
<style>
/* CSS the visitor will not change */
</style>
<style class="editable">
/* CSS the visitor can play with */
</style>
</head>
<body>
<section class="preview">
<!-- HTML for your component here. -->
</section>
<textarea class="playable playable-css" style="height: 170px">
<!-- repeat the second block of CSS here. You can tweak the height to make more room for the content. -->
</textarea>
<textarea class="playable playable-html" style="height: 70px">
<!-- repeat the HTML for your component here. You can tweak the height to make more room for the content. --></textarea
>
<!-- leave everything below here alone -->
<div class="playable-buttons">
<input id="reset" type="button" value="Reset" />
</div>
</body>
<script src="playable.js"></script>
</html>