-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (31 loc) · 1.65 KB
/
Copy pathindex.html
File metadata and controls
66 lines (31 loc) · 1.65 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
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE HTML>
<html>
<head>
<title>CODE PLAYER</title>
<script type="text/javascript" src="jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="header">
<div id="logo">
<img id="logo-image" src="code-player-logo.png">
Code Player
</div>
<div id="buttonContainer">
<div class="pressButton active" id="html">HTML</div>
<div class="pressButton" id="css">CSS</div>
<div class="pressButton" id="javascript">JavaScript</div>
<div class="pressButton active" id="output">Output</div>
</div>
</div>
<div id="bodyContainer">
<div>
<textarea id="htmlPanel" class="panel"><p id="paragraph">Sample Text</p></textarea>
<textarea id="cssPanel" class="panel hidden"> p { color: green; }</textarea>
<textarea id="javascriptPanel" class="panel hidden">document.getElementById("paragraph").innerHTML = "Sample Javascript";</textarea>
<iframe id="outputPanel" class="panel"></iframe>
</div>
</div>
<script type="text/javascript" src="main.js"></script>
</body>
</html>