-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (42 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Text Editor app</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
integrity="sha512-c42qTSw/wPZ3/5LBzD+Bw5f7bSF2oxou6wEb+I/lqeaKV5FDIfMvvRp772y4jcJLKuGUOpbJMdg/BTl50fJYAw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header id="main_heading">
<center>SB Text Editor Ver 1.0.0</center>
</header>
<fieldset id="code_box1">
<legend id="Heading">TYPE YOUR CODE HERE</legend>
<textarea id="code">
<!DOCTYPE html>
<html lang="en">
<head>
<title>
SB Text Editor
</title>
</head>
<body>
</body>
</html>
</textarea>
</fieldset>
<fieldset id="code_box2">
<legend>Output Of Your Code</legend>
<div id="result">
</div>
</fieldset>
<center>
<button id="run_btn" onclick="run()">Run Code !</button> <button id="return_btn" onclick="back()">Return To Code
!</button>
</center>
<script src="script.js"></script>
</body>
</html>