-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactus.html
96 lines (81 loc) · 1.85 KB
/
contactus.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
<!DOCTYPE html>
<html>
<head>
<title>Contact Us page</title>
<link rel="stylesheet" type="text/css" href="css/style2.css">
</head>
<body>
<header>
<div class="mainheader">
<nav>
<a href="index.html">home</a>
<a href="services.html">services</a>
<a href="about.html">about</a>
<a href="login.html">Login</a>
<a href="helpline.html">HelpLine</a>
</nav>
<section class="background firstsection">
<div class="box-main">
<div class="firstHalf">
<p class="text-big">Contact Us</p>
<p class="text-small">
You can Contact Us if you face any problem
</p>
<br>
<p class="center"
style="text-decoration:none;
color:white;">
Click on the below options to Contact us
</p>
</div>
</div>
</section>
<section class="service">
<!-- Heading-->
<h1 class="h-primary center"
style="margin-top:30px;">
Options to Contact
</h1>
<div id="service">
<div class="box">
<!-- Form -->
<img src="IMAGES/form.jpg"
alt= "color_image">
<br>
<!-- Displaying text at
the center of the box-->
<p class="center">
People can fill up the form and send us the problem
</p>
</div>
<div class="box">
<!-- Email -->
<img src="IMAGES/email.webp"
alt= "color_image">
<br>
<!-- Displaying text at
the center of the box-->
<p class="center">
Use this Email to send us about the problem faced
</p>
</div>
<div class="box">
<img src="IMAGES/call.jpg"
alt= "color_image">
<br>
<!-- Displaying text at
the center of the box-->
<p class="center">
Toll Free Number:+1800 200 300 400
</p>
</div>
</div>
</section>
<footer class="background">
<p class="text-footer">
Copyright @-All rights are reserved
</p>
</footer>
</div>
</body>
</html>