-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (42 loc) · 1.55 KB
/
Copy pathindex.html
File metadata and controls
69 lines (42 loc) · 1.55 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
67
68
69
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<title>CodeWeb</title>
</head>
<body>
<div id="header">
<div id="logo">
CodeWeb
</div>
<div id="buttonContainer">
<div class="toggleButton active" id="html">HTML</div>
<div class="toggleButton" id="css">CSS</div>
<div class="toggleButton" id="javascript">JavaScript</div>
<div class="toggleButton active" id="output">Output</div>
</div>
<a href="http://rudisdev.herokuapp.com" target="_blank"><button>Meu Portfolio</button></a>
</div>
<div id="bodyContainer">
<textarea id="htmlPanel" class="panel">
<!------ HTML ------>
<h1>Bem vindo ao CodeWeb</h1>
<p>Teste seu código HTML aqui ;)<p>
</textarea>
<textarea id="cssPanel" class="panel hidden">
/****** CSS *******/
h1 {
color: #1E88E5;
text-shadow: 1px 1px 1px black ;
} </textarea>
<textarea id="javascriptPanel" class="panel hidden">
/******* JavaScript *******/
</textarea>
<iframe id="outputPanel" class="panel"></iframe>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script type="text/javascript" src="assets/js/js.js"></script>
</body>
</html>