forked from FirmanKurniawan/HTML-Projects
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathblog-form.html
39 lines (37 loc) · 1.18 KB
/
blog-form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog Form</title>
</head>
<body>
<h1>Enter your Blog</h1>
<form action="">
<label for="title">Title : </label>
<input type="text" name="title" placeholder="Enter your Title : ">
<br><br>
<label for="author">Author : </label>
<input type="text" name="author" placeholder="Enter your Author : ">
<br><br>
<label for="blog">Blog : </label>
<textarea name="blog" rows="10" cols="30"></textarea>
<br><br>
<label for="email">Email : </label>
<input type="email" name="email">
<br><br>
<label for="pw">Password : </label>
<input type="password" name="pw">
<br><br>
<label for="image">Image : </label>
<input type="file" name="image">
<br><br>
<input type="checkbox" name="privacypolicy">
<a href="#">Privacy Policy</a>
<br><br>
<button type="Submit">Submit</button>
</form>
</body>
</html>
#Hacktoberfest-2021