-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
102 lines (74 loc) · 3.53 KB
/
index.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--=====CSS=====-->
<link rel="icon" href='logo.jpg' type="image/x-icon">
<link rel="stylesheet" href="styles.css">
<!--======box-icons======-->
<script src="https://kit.fontawesome.com/0175b47e25.js" crossorigin="anonymous"></script>
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<!-- ace -->
<link rel="stylesheet" href="Editor files/editor-styles.css">
<!-- fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Secular+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap" rel="stylesheet">
<title>Online Code Editor-Wanda</title>
</head>
<body>
<section class="header">
<a href="index.html"><img src="logo.jpg" class="logo" height="60px" width="60px"></a>
<span class="team_name">Wanda</span>
<span class="team_description">~Coding made easy</span>
<span class="project_name">{ONLINE CODE EDITOR}</span>
<img src="mooon.jpg" id="icon">
</section>
<div class="actions">
<div class="leftheadersection">
"Talk is cheap! Show me the Code."
</div>
<div class="rightheadersection">
<button id="run-btn" class="editor_btn"><i class='bx bx-play'></i>Run</button>
<button id="download-btn" onclick="download()"><i class='bx bxs-download'></i> Download</button>
</div>
</div>
<div class="editor">
<div class="code">
<div class="html-code"><span class="lang-text">HTML</span>
<div class="inner-code" id="htmlCode"></div>
</div>
<div class="css-code"><span class="lang-text">CSS</span>
<div class="inner-code" id="cssCode"></div>
</div>
<div class="js-code"><span class="lang-text">JS</span>
<div class="inner-code" id="jsCode"></div>
</div>
</div>
</div>
<div class="demo">RESULT WINDOW</div>
<div class="preview">
<iframe id="preview-window"></iframe>
</div>
</div>
<script src="https://kit.fontawesome.com/746da861bd.js" crossorigin="anonymous"></script>
<script src="script.js"></script>
<!-- Required ace libraries -->
<script src="Editor files/src-min/ace.js"></script>
<script src="Editor files/src-min/mode-html.js"></script>
<script src="Editor files/src-min/mode-css.js"></script>
<script src="Editor files/src-min/mode-javascript.js"></script>
<script src="Editor files/src-min/ext-language_tools.js"></script>
<script src="Editor files/editor.js"></script>
</body>
<div class="footer">
<a class="footer-links" href="about-us.html">About us</a>
<a class="footer-links" href="contact.html">Contact us</a>
<a class="footer-links github-logo" href="https://github.com/Susmita2105/Wanda-Code-Editor"><i
class="fab fa-github"></i></a>
<p class="copyright">© Web Waltzers 2022</p>
</div>
</html>