-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (43 loc) · 1.01 KB
/
index.html
File metadata and controls
54 lines (43 loc) · 1.01 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>A demo of a demo</title>
<link rel="stylesheet" type="text/css" href="appstyles.css">
</head>
<body><div class="wrapper">
<header>
<h1>Demos Editor</h1>
</header>
<article>
<section id="edit">
<!-- <p>The code here comes from files within the repository</p> -->
<section>
<h3>HTML</h3>
<textarea id="html">
<h1>some html</h1>
</textarea>
</section>
<section>
<h3>CSS</h3>
<textarea id="css">
h1 {color: red;}
</textarea>
</section>
<section>
<h3>JS</h3>
<textarea resize="false" id="js">
const h1 = document.querySelector('h1');
h1.style.color = 'blue';
</textarea>
</section>
</section>
<button id="run"><span>> > > RUN > > ></span></button>
<section id="result">
<iframe id="preview"></iframe>
</section>
</article>
</div>
<script type="text/javascript" src="app.js" defer></script>
</body>
</html>