-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
36 lines (31 loc) · 851 Bytes
/
Copy pathcontact.html
File metadata and controls
36 lines (31 loc) · 851 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">
<title>contact us</title>
<link rel="stylesheet" href="style.css" />
<style>
.contact {
font-style: normal;
font-weight: 100;
font-size:20px;
}
</style>
</head>
<body>
<h1 style="color: rgb(85, 32, 242); font-size: 40px; ">Contact</h1>
<hr />
<div>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</div>
<hr />
<div class="contact">
<a href="mailto:shendepranali@gmail.com">email</a><br/>
<a href="tel:xxxxxxxxxxx">call us</a>
</div>
<h3 class="headings"> If you want to visit us please call us!</h3>
</body>
</html>