-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlog.html
More file actions
78 lines (67 loc) · 1.84 KB
/
Blog.html
File metadata and controls
78 lines (67 loc) · 1.84 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Blog</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
color:#000000;
background-image: url('pic.png');
}
h1 {
color: #000000;
}
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 20px;
}
form {
margin-top: 20px;
}
label {
display: block;
margin-bottom: 5px;
}
input, textarea {
width: 100%;
padding: 5px;
margin-bottom: 10px;
}
button {
background-color: #4CAF50;
color: white;
padding: 10px 15px;
border: none;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Simple Blog</h1>
<ul>
<li>
<h2>Sky High</h2>
<p>Amazed to see the sky very high from the ground.We want to fly in the sky high .It is the thought of the William Brothers.</p>
</li>
<li>
<h2>Happy Life</h2>
<p>Life is very short so we must make each and every moment happy.</p>
</li>
<!-- Add more posts here -->
</ul>
<form>
<h2>Add a New Post</h2>
<label for="postTitle">Title:</label>
<input type="text" id="postTitle" name="postTitle" required>
<label for="postContent">Content:</label>
<textarea id="postContent" name="postContent" rows="4" required></textarea>
<button type="submit">Submit Post</button>
</form>
</body>
</html>