-
Notifications
You must be signed in to change notification settings - Fork 0
/
add-post.html
148 lines (140 loc) · 4.66 KB
/
add-post.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!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>BlogIt</title>
<!-- Custom CSS -->
<link rel="stylesheet" href="./style.css" />
<!-- Iconscout CDN -->
<link
rel="stylesheet"
href="https://unicons.iconscout.com/release/v4.0.0/css/line.css"
/>
<!-- Google Fonts Montserrat -->
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Nav starts here -->
<nav>
<div class="container nav_container">
<a href="index.html" class="nav_logo">BlogIt</a>
<ul class="nav_items">
<li><a href="blog.html">Blog</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
<!-- <li><a href="signin.html">SignIn</a></li> -->
<li class="nav_profile">
<div class="avatar">
<img src="./images/avatar11.jpg" />
</div>
<ul>
<li><a href="dashboard.html">Dashboard</a></li>
<li><a href="logout.html">Log Out</a></li>
</ul>
</li>
</ul>
<button id="open_nav-btn"><i class="uil uil-bars"></i></button>
<button id="close_nav-btn"><i class="uil uil-multiply"></i></button>
</div>
</nav>
<!-- Nav ends here -->
<!-- Form starts here -->
<section class="form_section">
<div class="container form_section-container">
<h2>Add Post</h2>
<div class="alert_message error">
<p>This is error message</p>
</div>
<form action="" enctype="multipart/form-data">
<input type="text" placeholder="Title" />
<select>
<option value="">Food</option>
<option value="">Music</option>
<option value="">Lifestyle</option>
<option value="">Politics</option>
<option value="">Travel</option>
<option value="">Sports</option>
</select>
<textarea row="10" placeholder="Body"></textarea>
<div class="form_control inline">
<input type="checkbox" id="is_featured" checked />
<label for="is_featured">Featured</label>
</div>
<div class="form_control">
<label for="thumbnail">Add Thumbnail</label>
<input type="file" id="thumbnail" />
</div>
<button type="submit" class="btn">Add Post</button>
</form>
</div>
</section>
<!-- Form ends here -->
<!-- Footer starts here -->
<footer>
<div class="footer_socials">
<a href="" class="linkedIn" target="_blank"
><i class="uil uil-linkedin"></i
></a>
<a href="" class="twitter" target="_blank"
><i class="uil uil-twitter"></i
></a>
<a href="" class="github" target="_blank"
><i class="uil uil-github"></i
></a>
</div>
<div class="container footer_container">
<article>
<h4>Categories</h4>
<ul>
<li><a href="">Food</a></li>
<li><a href="">Music</a></li>
<li><a href="">Lifestyle</a></li>
<li><a href="">Politics</a></li>
<li><a href="">Travel</a></li>
<li><a href="">Sports</a></li>
</ul>
</article>
<article>
<h4>Support</h4>
<ul>
<li><a href="">Online Support</a></li>
<li><a href="">Call Numbers</a></li>
<li><a href="">Emails</a></li>
<li><a href="">Social Support</a></li>
<li><a href="">Location</a></li>
</ul>
</article>
<article>
<h4>Blog</h4>
<ul>
<li><a href="">Safety</a></li>
<li><a href="">Repair</a></li>
<li><a href="">Recent</a></li>
<li><a href="">Popular</a></li>
<li><a href="">Categories</a></li>
</ul>
</article>
<article>
<h4>Permalinks</h4>
<ul>
<li><a href="">Home</a></li>
<li><a href="">Blog</a></li>
<li><a href="">About</a></li>
<li><a href="">Services</a></li>
<li><a href="">Contact</a></li>
</ul>
</article>
</div>
<div class="footer_copyright">
<small>Copyright © 2023 BlogIt</small>
</div>
</footer>
<script src="./main.js"></script>
</body>
</html>