-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtmlcodecompiler.html
More file actions
62 lines (61 loc) · 1.72 KB
/
htmlcodecompiler.html
File metadata and controls
62 lines (61 loc) · 1.72 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML,CSS,JS Complier</title>
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
</head>
<style>
body{
background-color: rgb(168, 168, 168);
}
.head{
font-family: 'poppins';
background-color: white;
padding: 10px;
border-radius: 10px;
}
footer{
font-family: 'poppins';
background-color: white;
border-radius: 10px;
padding: 20px;
text-align: center;
}
.codingg{
font-family: 'poppins';
text-align: center;
background-color: white;
border-radius: 10px;
}
ul li{
list-style: none;
}
</style>
<script>
function coding(){
y=document.getElementById("code").value
document.getElementById("replace").innerHTML=y
}
</script>
<body>
<div class="head">
<h1><center>Welcome to Code Compiler <br> Live</center></h1>
</div>
<div class="codingg">
<p id="replace">This line will replace your code.</p>
<textarea id="code" onkeyup="coding()"></textarea>
</div>
<br>
<footer>
<p>© Mudit Web Tools. All rights reserved. 2024</p>
<P><b>Terms and Conditions</b></P>
<ul>
<li>This compiler is not 100% accurate</li><br>
<li>You can use it for day to day task not for regular projects.</li><br>
<li>After refreshing all your data will be vanished. It's just a client side page not containg backend database.</li><br>
</ul>
</footer>
</body>
</html>