-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactpage.html
127 lines (123 loc) · 4.4 KB
/
contactpage.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<html>
<head>
<title>contact us</title>
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
.left {
color: white;
}
nav {
display: flex;
align-items: center;
justify-content: space-around;
height: 80px;
background-color: rgb(18, 18, 62);
}
nav ul {
display: flex;
justify-content: center;
}
nav ul li {
list-style: none;
margin: 0 23px;
}
nav ul li a {
text-decoration: none;
color: white;
}
nav ul li a:hover {
color: lavender;
font-size: 1.03rem;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Times New Roman', Times, serif;
}
.contact {
position: relative;
min-height: 100vh;
padding: 50px 100px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background: url('C:\Users\Admin\OneDrive\Desktop\projectsellify\protfolio\images\contact.png');
background-size: cover;
}
.contact .content {
max-width: 800px;
text-align: center;
}
.contact .content h2 {
font-size: 36px;
font-weight: 500;
color: #fff;
}
#red {
flex:
}
</style>
</head>
<body>
<!----- <img src="C:\Users\Admin\OneDrive\Pictures\Saved Pictures\Contact-Us-1.jpg" height="200px" width="500px" id="red">----->
<header>
<nav>
<div class="left">Vinay's Portfolio</div>
<div class="right">
<ul>
<li class="active"><a href="main.html">Home</a></li>
<li><a href="#">Skills</a></li>
<li><a href="academicdetails.html">Academic Details</a></li>
<li><a href="proj22.html">Projects</a></li>
<li><a href="contactpage.html">ContactMe</a></li>
<li><a href="file:///C:/Users/Admin/OneDrive/Desktop/projectsellify/protfolio/pdf/vinayresumenew.pdf"
download="computer" class="download-btn">Resume<i class="fa fa-download"></i></a></li>
</ul>
</div>
</nav>
</header>
<section class="contact">
<div class="content">
<h1>Contact Us</h1>
</div>
<div class="container">
<div class="contactinfo">
<div class="box">
<div class="icon" style="color: royalblue;"><i class="fa-solid fa-location-dot"></i>
</i>
</div>
<div class="text">
<h3>Address</h3>
<p>Vidya Nagar 5th cross near Ganga Matha Function Hall<br>583101</p>
</div>
</div><br><br>
<div class="box">
<div class="icon" style="color: royalblue;"><i class="fa fa-phone-square" aria-hidden="true"></i>
</div>
<div class="text">
<h3>Phone Number</h3>
<p>7760051741</p>
</div>
</div><br><br>
<div class="box">
<div class="icon" style="color: red;"><i class="fa-solid fa-envelope"></i>
</div>
<div class="text">
<h3>e-mail</h3>
<p>[email protected]</p>
</div>
</div><br><br>
</div>
</div>
<div class="vin">
<script src="https://sheetdb.io/s/f/6bxd7vyiba3da.js"></script>
</div>
</section>
</body>
</html>