-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
73 lines (67 loc) · 2.03 KB
/
contact.php
File metadata and controls
73 lines (67 loc) · 2.03 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/contact.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css">
<style type="text/css">
.nv ul{
float:right;
list-style-type: none;
margin-top: -285px;
margin-left: -50px;
}
.nv ul li{
display:inline-block;
}
.nv ul li a{
text-decoration: none;
padding:5px 10px;
border:1px solid black;
border-width: 2px;
transition: 0.6s ease;
position: relative;
display: inline-block;
padding: 12px 36px;
margin: 10px 0;
text-decoration: none;
text-transform: uppercase;
font-size: 18px;
letter-spacing: 2px;
border-radius: 7px;
color: black;
}
.card-box{
background-color: rgba(172, 49, 247,0.5);background-color: rgba(172, 49, 247,0.5);
background-image: linear-gradient(315deg, rgba(157, 197, 195,0.5) 0%, rgba(70, 45, 71,0.5) 74%);
border-radius: 35px;
}
.nv ul li a:hover{
color: white;
background-color: rgba(157, 197, 195,0.5);
background-image: linear-gradient(315deg, rgba(157, 197, 195,0.5) 0%, rgba(70, 45, 71,0.5) 74%);
}
</style>
</head>
<body>
<div class="contact-info">
<div class="nv">
<ul >
<li class="active"><a href="index.php" >Home</a></li> </ul></div>
<div class="card-box card" >
<i class="card-icon far fa-envelope"></i>
<p>cvasingh.7482@gmail.com</p>
</div>
<div class="card-box card">
<i class="card-icon fas fa-phone"></i>
<p>+918400754949</p>
</div>
<div class="card-box card" >
<i class="card-icon fas fa-map-marker-alt"></i>
<center><p>lucknow, Uttar Pradesh, India</p></center>
</div>
</div>
</body>
</html>