-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrite.html
More file actions
36 lines (36 loc) · 1.28 KB
/
Copy pathwrite.html
File metadata and controls
36 lines (36 loc) · 1.28 KB
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>Write an article</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/utils.css">
</head>
<body>
<!--NavBar Section-->
<section class="nav justify-between flex">
<div class="logo flex item-center"><a href="about.html">Ashwin Shenoy</a></div>
<form action="/" method="post" class="search">
<input type="text" placeholder="Search Articles"required>
<input type="button" value="search">
</form>
<ul class="flex navitem item-center">
<li class="item"><a href="main.html">Home</a></li>
<li class="item"><a href="write.html">Write an Article</a></li>
<li class="item"><a href="contact.html">Contact Me</a></li>
</ul>
</section>
<!--Write a Blog-->
<section>
<div class="write flex">
<h2 class="flex">Type off your thoughts</h2>
<form action="/post" method="post">
<textarea name="blog" id="blogcontent" cols="100" rows="30"></textarea>
<br>
<input type="submit" name="" id="">
</form>
</div>
</section>
</body>
</html>