-
Notifications
You must be signed in to change notification settings - Fork 0
/
AddBlog.html
134 lines (115 loc) · 4.48 KB
/
AddBlog.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
<!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>AddBlog</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet"
href="https://cdn.rawgit.com/bootstrap-wysiwyg/bootstrap3-wysiwyg/master/src/bootstrap3-wysihtml5.css">
<link rel="stylesheet" href="CSS/style.css">
<style>
.btn-file {
position: relative;
overflow: hidden;
}
.container {
padding-top: 20px;
}
label {
font-size: 30px;
}
.btn {
border-radius: 20px;
border: 1px solid #3c4f7b;
background-color: #3c4f7b;
color: #FFFFFF;
font-size: 15xpx;
font-weight: bold;
/* padding: 12px 45px; */
letter-spacing: 1px;
text-transform: uppercase;
/* transition: transform 80ms ease-in; */
}
.btn:hover {
background-color: #212e6e;
color: #FFFFFF;
transform: scale(0.97);
}
footer {
width: 100%;
}
</style>
</head>
<body>
<div class="row">
<div class="container">
<div class="col-md-12">
<form action="newblog.php" method="post" role="form">
<div class="form-group ">
<label> Title Of Blog</label>
<div class="form-group">
<input type="text" name="blog_title" class="form-control" name="title" placeholder="Title" />
</div>
<div class="form-group">
<textarea class="form-control bcontent" name="blog_content" cols="60" rows="20"></textarea>
</div>
<div class="form-group">
<type type="submit" name="blog_submit" value="Submit" class="btn btn-primary form-control" /><a style="color: #fff;">
Submit</a>
</div>
</form>
</div>
</div>
</div>
<footer>
<div class="content">
<div class="top">
<div class="logo-details">
<span class="logo_name"> <img src="IMG/BLOGOSPHERE .png" height="75px"> BLOGOSPHERE </span>
</div>
</div>
<div class="link-boxes">
<ul class="box">
<li class="link_name" id="foot1">Links</li>
<li><a href="UserHome.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
<ul class="box">
<li class="link_name" id="foot2">Categories</li>
<li><a href="#">Food</a></li>
<li><a href="#">Travel</a></li>
<li><a href="#">Health</a></li>
<li><a href="#">Business</a></li>
<li><a href="#">Lifestyle</a></li>
</ul>
<ul class="box">
<li class="link_name" id="foot3">Legal Info</li>
<li><a href="#">Licence</a></li>
<li><a href="#">Terms and Conditions</a></li>
<li><a href="#">Privacy Policies</a></li>
</ul>
<ul class="box">
<li class="link_name" id="foot4">Contact</li>
<li><a target="on_blank" href="tel:+919079680135">+91 9876543210</a></li>
<li><a target="on_blank" href="mailto:'[email protected]'">
[email protected]</a></li>
</ul>
</div>
</div>
<hr style="border-color: white ;">
<div id="copyright">
<h1 id="copyright1">
<p>
Created with <i class="fa fa-heart"></i> by BLOGOSPHERE
- Click to know about us
<a target="_blank" href="">here</a>.
</p>
</h1>
</div>
</footer>
</body>
</html>