-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
71 lines (71 loc) · 3.03 KB
/
main.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
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
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Code Editor</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.31.1/ace.js" integrity="sha512-a9+UssxQ7SRBDf5iwiGlGP1WezkIpdqKKIO37B3ellyQRjdrpj+NuDWme/nJQXkALyVpahGXRpJX7mLTvctyoQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> <link rel="stylesheet" href="mainStyle.css">
</head>
<body>
<header>
<nav>
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i>☰</i>
</label>
<label class="logo" name="Amigos">ADAM CODES</label>
<ul id="ulList">
<li><a href="#" class="active">PLAYGROUND</a></li>
<li><a id="changeTheme"><ruby>CHANGE THEME<rt>EDITOR</rt></ruby></a></li>
<li><a href="#" onclick="window.location.href = './profile.html'">PROFILE</a></li>
</ul>
</nav>
<main id="main">
<div class="menu">
<button id="indexEditor" class="active">index.html</button>
<button id="styleEditor">style.css</button>
<button id="scriptEditor">script.js</button>
<button id="tagSuggestions">
Add Tag
<div class="dropdown-content">
<a href="#">div</a>
<a href="#">p</a>
<a href="#">a</a>
<a href="#">h1</a>
<a href="#">h2</a>
<a href="#">h3</a>
<a href="#">h4</a>
<a href="#">h5</a>
<a href="#">h6</a>
<a href="#">button</a>
<a href="#">input</a>
<a href="#">span</a>
<a href="#">ul</a>
<a href="#">li</a>
<a href="#">ol</a>
<a href="#">img</a>
</div>
</button>
<button id="attributeSuggestions">
Add Attribute
<div class="dropdown-content">
<a href="#">id</a>
<a href="#">class</a>
<a href="#">name</a>
<a href="#">value</a>
<a href="#">type</a>
<a href="#">for</a>
</div>
</button>
</div>
<div id="editorContainer" class="editorContainer">
<div class="htmlEditor" id="htmlEditor"></div>
<div class="cssEditor" id="cssEditor"></div>
<div class="jsEditor" id="jsEditor"></div>
</div>
<iframe class="output" id="output" style="border: 5px solid rgb(0, 0, 0);"></iframe>
</main>
<script src="mainScript.js"></script>
</header>
</body>
</html>