-
Notifications
You must be signed in to change notification settings - Fork 0
/
sub.html
48 lines (47 loc) · 1.18 KB
/
sub.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Runner</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
#htmlInput {
width: 100%;
height: 200px;
margin-bottom: 10px;
}
#output {
border: 1px solid #ccc;
padding: 10px;
margin-top: 20px;
}
.black-box {
background-color: black;
}
.heading {
color: white;
}
</style>
</head>
<body>
<div class="black-box">
<h1 class="heading">HTML Runner</h1>
</div>
<textarea id="htmlInput" placeholder="Enter your HTML code here"></textarea>
<button onclick="runHTML()">Run HTML</button>
<div id="output"></div>
<script>
function runHTML() {
const htmlInput = document.getElementById('htmlInput').value;
const outputDiv = document.getElementById('output');
outputDiv.innerHTML = htmlInput;
}
</script>
</body>
</html>