-
Notifications
You must be signed in to change notification settings - Fork 0
/
basic.html
25 lines (22 loc) · 859 Bytes
/
basic.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
<html>
<head>
<link rel="stylesheet" href="C:\Users\MALVI\OneDrive\Desktop\MERN_stack\project\html_online_interpreter\file.css">
<script src="C:\Users\MALVI\OneDrive\Desktop\MERN_stack\project\html_online_interpreter\script.js"></script>
</head>
<body>
<header>
<h2>The Online HTML Interpreter</h2>
</header>
<div id="top-box">
<textarea id="text-area" onkeydown="lw()" cols="162" style="font-size:15px ;" rows="12.5" placeholder="Write your code here" ></textarea>
</div>
<div id="bottom-box" style="min-height: 300px; overflow: hidden;">
<div id="h1"></div>
</div>
<div style="width: 100% ; height: auto;
background-color: aliceblue; border: 3px ;
text-align: center; border-radius: 5px; font-size: medium;">
All Rights are reserved
</div>
</body>
</html>