-
Notifications
You must be signed in to change notification settings - Fork 0
/
new.html
37 lines (35 loc) · 1.35 KB
/
new.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="new.css"/>
<title>Markdown to HTML Conversion</title>
</head>
<body>
<div id="header">
<h1><bold class="unique">p</bold><bold class="bold">roject<bold class="unique">1</bold><bold class="unique">g</bold><bold class="unique">1</bold>pedi</bold><bold class="unique">a</bold></h1>
<p>the best encyclopedia</p>
</div>
<h1>Create a New Encyclopedia Entry</h1>
<div id="authorWrapper">
<label class="author-label" for="author">Author:</label>
<input id="author" type="author" autofocus/>
</div>
<div id="titleWrapper">
<label class="title-llabel" for="title">Title:</label>
<input id="title" type="text"/>
</div>
<div id="markdownWrapper">
<label for="markdown">Enter Content in Markdown Format:</label>
<textarea id="markdown" placeholder="Markdown to html conversion field. All writing here will be converted to it html equivalent form in the 'HTML equivalent' field below:"></textarea>
</div>
<label class="html-label" for="output">HTML Equivalent:</label>
<div id="output"></div>
<div id="footer">
<button class="btn-save">Save</button>
<button class="btn-exit">Exit</button>
</div>
<script type="module" src="new.js"></script>
</body>
</html>