-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
87 lines (69 loc) · 1.75 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<style>
body{
display: flex;
justify-content: space-around;
}
.con{
display: flex;
align-items: center;
flex-wrap: wrap;
}
</style>
<style>
body {
background-color: #1b1919;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.con {
text-align: center;
padding: 20px;
background-color: #263643;
border-radius: 10px;
}
h2 {
color: #4B0082;
margin-bottom: 10px;
}
p {
color: #000080;
}
</style>
<!-- <style>
body {
background-color: #000000;
}
.con {
/* Add your styles for the content here */
}
/* Add any additional styles for other elements */
</style>
</head>-->
<!-- <body>
<div class="con">
<h2>Gmail :</h2>
<p> info.utkarshpatidar011@gmail.com </p>
<h2>Mobile No :</h2>
<p> 7000025951 </p>
</div>
</body>
</html> -->
<body>
<div class="con">
<h1 style="color: #FF4081;">Gmail :</h1>
<h2 style="color: #09efeb;"> utkarshpatidar011@gmail.com </h2>
<h1 style="color: #FF4081;">Mobile No :</h1>
<h2 style="color: #0ceded;"> 7000025951 </h2>
</div>
</body>
</html>