-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddblogs.html
73 lines (62 loc) · 3.4 KB
/
addblogs.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div>
<nav class="flex justify-between p-5 bg-[#ca8a47] shadow-lg shadow-[#2c2d26] h-32 rounded-md ">
<img src="#" alt="" class="">
<ul class="flex mt-5">
<li><a href="Home.html" class="p-5 text-white font-bold text-xl hover:text-2xl italic">Home</a></li>
<li><a href="/Blogs.html" class="p-5 text-white font-bold text-xl hover:text-2xl italic">Blog</a></li>
<li><a href="/MyBlogs.html" class="p-5 text-white font-bold text-xl hover:text-2xl italic">My Blog</a></li>
<li><a href="/Profile.html" class="p-5 text-white font-bold text-xl hover:text-2xl italic">About Me</a></li>
<li><a href="/Login.html" class="p-5 text-white font-bold text-xl hover:text-2xl italic">Logout</a></li>
</ul>
</nav>
</div>
<div class="flex justify-center m-10 ">
<div class="w-[600px] h-[950px] bg-[#ca8a47] rounded-xl shadow-xl shadow-black">
<div class="">
<div class="p-5 m-5">
<h3 class="text-center text-2xl font-bold">Add Blog</h3>
</div>
<div class=" p-5 m-5">
<label for="" class="text-xl font-bold"> Name : </label>
<input type="text" placeholer="Enter Name" required class="rounded-xl w-[350px] h-8 border-2 hover:border-black"><br>
</div>
<div class="p-5 m-5">
<label for="" class="text-xl font-bold"> Email :</label>
<input type="email" placeholer="Enter Email" required class="rounded-xl w-[350px] h-8 border-2 hover:border-black">,<br>
</div>
<div class="p-5 m-5">
<label for="" class="text-xl font-bold">Category:</label>
<input type="text" placeholder="Enter Category" required class="rounded-xl w-[318px] h-8 border-2 hover:border-black"><br>
</div>
<div class="p-5 m-5">
<label for="" class="text-xl font-bold">Location :</label>
<input type="text" placeholder="Enter Category" required class="rounded-xl w-[318px] h-8 border-2 hover:border-black"><br>
</div>
<div class="p-5 m-5">
<label for="" class="text-xl font-bold">Photos :</label>
<input type="file">
</div>
<div class="p-5 m-5">
<label for="" class="text-xl font-bold ">Date :</label>
<input type="date" placeholder="Enter Date" required><br>
<div class="p-5 m-5">
<label for="" class="text-xl font-bold">Add Blogs :</label>
<textarea name="" placeholder="Enter Your Blog" required class="w-[350px] h-[100px] border-2 hover:border-black rounded-md ml-6"></textarea>
</div>
<div class="p-5 m-5">
<button class="bg-white ml-80 text-black w-28 h-10 rounded-xl font-bold ring-2 hover:ring-black">Add Blog </button>
</div>
</div>
</div>
</div>
</body>
</html>