forked from DABB1/Digital-Library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
36 lines (29 loc) · 794 Bytes
/
about.html
File metadata and controls
36 lines (29 loc) · 794 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>About</title>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
background-color: black
}
#main{
background-color: white;
padding: 20px;
}
</style>
</head>
<body>
<div id="main">
<h2>About Us</h2>
<p>DABB is a gateway to make offline transactions easier.</p>
<h3>Please contact us for suggestions/queries</h3>
<p>Email : dabb@gmail.com</p>
<p>Phone : 080-23456789</p>
<p>Address : Central Building,4 <sup>th</sup> floor, Malleshwaram, Bangalore</p>
</div>
</body>
</html>