-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (38 loc) · 1.31 KB
/
Copy pathindex.html
File metadata and controls
42 lines (38 loc) · 1.31 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
<html>
<head>
<title>Code Editor</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
</head>
<body class="section">
<header>
<div>
<h1>Online Code Editor for HTML, CSS, JavaScript</h1>
</div>
<div id="mgn">
<div class="line" id="toplefthtml">
<h3 style="color: hsl(358deg 90% 62%);">HTML</h3>
</div>
<div class="line">
<h3 style="color: hsl(196deg 90% 53%);" id="topleftcss">CSS</h3>
</div>
<div class="line" id="topleftjs">
<h3 id="jsh3" style="color: hsl(50deg 90% 49%);">JS</h3>
</div>
</div>
</header>
<main>
<textarea class="section" id="html" placeholder="HTML"></textarea>
<textarea class="section" id="css" placeholder="CSS"></textarea>
<textarea class="section" id="js" placeholder="JavaScript"></textarea>
<iframe class="section" id="code"></iframe>
</main>
<footer>
<span id="footer">
<h5>Made with </h5><img src="images/red-heart_2764-fe0f.png" height="18px" />
<h5> by Mukti</h5>
</span>
</footer>
<script type="text/javascript" src="script.js"></script>
</body>
</html>