-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
84 lines (84 loc) · 2.14 KB
/
contact.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<style>
body{
background-color: black;
}
.container{
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 250px;
height: 200px;
background-color: #ccc;
border-radius: 3px;
margin: 150px auto;
max-width: 100%;
padding: 20px;
box-sizing: border-box;
}
p{
padding: 10px;
}
h3{
padding-left: 70px;
}
h1{
text-decoration: underline;
color: white;
text-align: center;
margin-top: 0;
}
footer{
color: white;
font-display: flex;
margin-top: 20px;
text-align: center;
}
button{
background-color: red;
padding: 10px 20px;
border: none;
border-radius: 5px;
margin-top: 20px;
display: block;
margin: 0 auto;
}
@media screen and (max-width: 768px) {
.container {
width: 100%;
height: auto;
margin: 50px auto;
padding: 20px;
}
h1 {
margin-top: 20px;
}
button {
margin-top: 20px;
}
}
</style>
</head>
<body>
<h1>Contact us for any further information</h1>
<div class="container">
<h3>Information</h3>
<p>
Name : Gyan Thakur<br>
Contact : 7016184175<br>
Whatsapp : 7016184175<br>
email : gyanthakurthakur@gmail.com
</p>
</div>
<div>
<button onclick="window.location.href = './welcome.php';">Home Page</button>
</div>
<footer><a href="./copyright.php">copyright</a> © Gyan 2024. All rights reserved.</footer>
</body>
</html>