1
0
Fork 0
mirror of https://github.com/jstrieb/urlpages.git synced 2025-03-15 13:04:33 +01:00
urlpages/editor/index.html
2019-06-29 21:53:15 -07:00

39 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>