-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog3.html
97 lines (75 loc) · 2.06 KB
/
blog3.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
<!DOCTYPE html>
<style>
body{
background-color: rgb(228, 228, 228);
}
#heding1{
text-align: center;
margin-top: 10px;
margin-bottom: 5px;
margin-left: 30px;
margin-right: 30px;
padding: 20px;
color: rgba(53, 20, 40, 0.521);
background-color: rgb(186, 219, 183);
font-family: Verdana;
font-size: x-large;
}
#pages{
text-align: center;
/* margin : 0px , 30px; */
padding : 30px;
background-color: rgb(231, 137, 60);
}
#pages a{
color: white;
font-size: large;
text-decoration: none;
padding : 40px;
font-family: FreeMono, monospace;
}
#blog{
height: 200px;
margin-top: 20px;
margin-bottom: 20px;
margin-left: 30px;
margin-right: 30px;
padding: 20px;
color: rgb(77, 77, 41);
background-color: rgb(221, 204, 192);
text-align: center;
padding: 40px;
}
#email {
color: rgb(77, 77, 41);
background-color: rgb(221, 204, 192);
padding: 10px;
margin-left: 30px;
margin-right: 30px;
font-size: medium;
font-family: Verdana;
}
</style>
<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 3</title>
</head>
<body>
<h1 id = "heding1">This is a web page for Funding</h1>
<div id = pages>
<a href="Home.html"> Home </a>
<a href="Donate.html"> Donate </a>
<a href="ContectUs.html"> Contact Us </a>
<a href="AbooutUs.html"> About Us </a>
</div>
<h1 id = "blog">BLOG</h1>
<div id = "email">
<p>
You may contact [email protected] email address to donate some amount to a needy one.
</p>
</div>
</body>
</html>