forked from Manteg-Singh/GuideBee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactus.html
110 lines (94 loc) · 3.9 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!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 {
background-image: url(contact-us-background.jpg);
background-attachment: fixed;
background-repeat: no-repeat;
background-size: 100% 100%;
}
h1 {
text-align: center;
color: rgb(209, 209, 209);
font-size: xx-large;
margin-top: 3%;
margin-left: -60px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.text {
margin-left: 100px;
color: rgb(209, 209, 209);
text-decoration: none;
display: inline-block;
margin-left: 20px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.icon {
display: inline-block;
vertical-align: top;
}
.box {
text-decoration: none;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
img {
border-radius: 50%;
margin-left: 125px;
width: ;
height: 20;
margin-bottom: 25px;
}
a {
margin-left: 2px;
}
.content{
margin-top: 2px;
}
</style>
</head>
<body>
<section class="contact">
<div class="content">
<h1>Contact Us</h1>
<p></p>
</div>
<div class="container">
<div class="contactInfo">
<div class="box">
<div class="icon"><img src="dhruv.png" alt="Dhruv" width="90" height="90"></div>
<div class="text">
<h3>Dhruv Mohan Datta</h3>
<p><a href="https://www.linkedin.com/in/dhruv-datta-516274200/" target="_blank" style="text-decoration: none; color: rgb(176, 176, 241);"> Linkedin</a></p>
</div>
</div>
<div class="box">
<div class="icon"><img src="Manteg.png" alt="Manteg" width="90" height="90"></div>
<div class="text">
<h3>Manteg Singh</h3>
<p> <a href="https://www.linkedin.com/in/manteg-singh-639464201/"target="_blank"
style="text-decoration: none; color: rgb(176, 176, 241);"> Linkedin</a></p>
</div>
</div>
<div class="box">
<div class="icon"><img src="Nikhilesh.png" alt="Nikhilesh" width="90" height="90"></div>
<div class="text">
<h3>Nikhilesh Vardhan Gupta</h3>
<p> <a href="https://www.linkedin.com/in/nikhileshvardhangupta0312"target="_blank" style="text-decoration: none;color: rgb(176, 176, 241);"> Linkedin</a></p>
</div>
</div>
<div class="box">
<div class="icon"><img src="Sanjeev.png" alt="Sanjeev" width="90" height="90"></div>
<div class="text">
<h3>Sanjeev Singh Rawat</h3>
<p> <a href="https://www.linkedin.com/in/sanjeev-singh-rawat-2b63b7201/"target="_blank" style="text-decoration: none;color: rgb(176, 176, 241);"> Linkedin</a></p>
</div>
</div>
</div>
</section>
</body>
</html>