-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcreate.html
36 lines (36 loc) · 1.16 KB
/
create.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Create Blog</title>
<link rel="stylesheet" href="style.css" />
<script src="./js/create.js" defer></script>
</head>
<body>
<nav class="navbar container">
<div class="brand">
<a href="./index.html"> Blog </a>
</div>
<div class="menu">
<a href="./index.html">Home</a>
<a href="./create.html">Create</a>
</div>
</nav>
<section class="form container">
<h1>Create A Blog</h1>
<form id="blogForm" method="post">
<label for="author">Author : </label>
<input type="text" name="author" id="author" autocomplete="off" />
<label for="title">Title : </label>
<input type="text" name="title" id="title" autocomplete="off" />
<label for="body">Body : </label>
<input type="text" name="body" id="body" autocomplete="off" />
<div class="button-group">
<button type="submit">Create Blog</button>
<p id="form-status"></p>
</div>
</form>
</section>
</body>
</html>