-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
156 lines (149 loc) · 3.3 KB
/
index.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
149
150
151
152
153
154
155
156
<!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>Payment gateway</title>
</head>
<style>
*{
padding: 0;
margin: 0;
}
.wrapper{
background: url(index.jpg) no-repeat;
background-size: cover;
height: 100vh;
}
.navbar{
position: fixed;
height: 60px;
width: 100%;
top: 0;
left: 0;
background-color: rgba(0, 0, 0,0.4);
opacity: 0.89;
}
.navbar .logo{
width: 65px;
height: auto;
padding: 11px 38px;
}
.navbar ul{
float: right;
margin: 20px;
}
.navbar li{
list-style: none;
margin: 0 8px;
display: inline-block;
line-height: 20px;
}
.navbar li a{
text-decoration: none;
padding: 4px 6px;
color: white;
font-size: 15px;
transition: .4s;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.navbar ul li a.active,
.navbar ul li a:hover{
background-color: red;
border-radius: 2px;
}
.title h1{
background: #f7040460;
position: absolute;
top: 15%;
left: 50%;
transform: translate(-50%,-40%);
height: 35px;
}
#footer{
display: flex;
background:black;
color: white;
flex-wrap: wrap;
justify-content: center;
opacity: 0.89;
text-align: center;
font-size: 10px;
opacity: 0.89;
}
footer p{
font-weight: 300;
margin: 3px;
}
.wrapper .center{
position: absolute;
left: 0;
top:50%;
font-family: sans-serif;
user-select: none;
}
.center h1{
color: black;
font-size: 35px;
font-family:"sans-serif";
text-transform: uppercase;
font-weight: bold;
text-align:left;
letter-spacing: 1px;
}
.center .buttons{
margin: 7px 11px;
font-family:"sans-serif";
}
.buttons button{
height: 50px;
width: 130px;
font-size: 20px;
font-weight: 600;
color: #ffb3b3;
background: red;
outline: none;
cursor: pointer;
border: 1px solid #cc0000;
border-radius: 5px;
transition: .4s;
}
.buttons .btn2{
margin-left: 25px;
}
.buttons button:hover{
background: #cc0000;
}
</style>
<body>
<div class="wrapper">
<nav class="navbar">
<img class="logo" src="img.jpg" href="index.html">
<ul>
<li><a class="active"href="index.html">HOME</a></li>
<li><a href="donate.html">DONATE</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="contact.html">CONTACT US</a></li>
</ul>
</nav>
<div class="title">
<h1>
MANGALYA
</h1>
</div>
<div class="center">
<h1>Giving is not just about making a donation,<br> it is about making a difference.</h1>
<div class="buttons">
<button onclick="window.location.href='about.html'">ABOUT US</button>
<button class="btn2" onclick="window.location.href='donate.html'">DONATE US</button>
</div>
</div>
</div>
<section id="footer">
<footer>
<p>© 2021. Made by <b>Kaushik Baruah</b> <br> KAUSHIK FOUNDATION</p>
</footer>
</section>
</body>
</html>