-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThanks.html
102 lines (86 loc) · 2.4 KB
/
Thanks.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
<!DOCTYPE html>
<html>
<head>
<title>Contact Us page</title>
<link rel="stylesheet" href="styles1.css">
</head>
<body>
<nav class="navbar background">
<!-- Creating the list of
items -->
<ul class="nav-list">
<li><a href="#Home">Home</a></li>
<li><a href="#Subscription">Subscription</a></li>
<li><a href="#AboutUs">About Us</a></li>
<li><a href="#feedback">Feedback</a></li>
</ul>
<!-- Create the search bar
and the button-->
<div class="rightNav">
<input type="text" name="search" id="search">
<button class="btn btn-sm">Search</button>
</div>
</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="https://media.geeksforgeeks.org/wp-content/uploads/20211220070335/color.png"
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 Feedback
<br> <br>
<b> <a href="feedback.html"> Feedback Form</a></b>
</p>
</div>
<div class="box">
<!-- Email -->
<img src="https://media.geeksforgeeks.org/wp-content/uploads/20211220070335/color.png"
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: <br> <br>
<b> musify@gamil.com</b>
</p>
</div>
<div class="box">
<img src="https://media.geeksforgeeks.org/wp-content/uploads/20211220070335/color.png"
alt= "color_image">
<br>
<!-- Displaying text at
the center of the box-->
<p class="center">
Toll Free Number:+1800 200 300 400 <br> <br>
+5000 400 200 150
</p>
</div>
</div>
</section>
</body>
</html>