urlpages/editor/index.html

40 lines
709 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Create and edit URL pages</title>
<style>
* {
margin: 0px;
box-sizing: border-box;
vertical-align: top;
}
html, body {
height: 100%;
}
textarea {
resize: none;
width: 33.3333%;
height: 40%;
}
iframe {
width: 100%;
height: 60%;
}
textarea, iframe {
border: 0.5px solid;
}
</style>
</head>
<body>
<!-- Unfortunately having these on one line is actually necessary to remove a tiny amount of space between them -->
<textarea id="html" placeholder="HTML" rows="9"></textarea><textarea id="css" placeholder="CSS" rows="9"></textarea><textarea id="javascript" placeholder="JavaScript" rows="9"></textarea>
<iframe id="display"></iframe>
</body>
</html>