-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 823 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Markdown Parser</title>
</head>
<body>
<h1 class="heading">Markdown Parser</h1>
<textarea name="input" id="input" ></textarea>
<div id="output"></div>
<script type="module" src="index.js"></script>
</script>
</body>
<style>
body, html{
margin: 0;
padding: 0;
box-sizing: border-box;
min-height: 100vh;
}
body{
display: flex;
flex-direction: column;
align-items: center;
}
.heading{
font-family: sans-serif;
}
#input{
width: 94vw;
height: 50vh;
resize: none;
padding: 2vh;
}
#output{
margin-top: 5vh;
font-family: sans-serif;
min-height: 45vh;
width: 80vw;
}
</style>
</html>