-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContacts.html
More file actions
145 lines (145 loc) · 4.11 KB
/
Contacts.html
File metadata and controls
145 lines (145 loc) · 4.11 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!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">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<title>Contacts</title>
</head>
<style>
.bac{
background-image: url('https://wallpapercave.com/wp/wp6751611.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
margin: 0;
padding: 0;
height: 100vh;
overflow: hidden;
text-align: center;
}
.nav{
width: 99.999vw;
height: 10vh;
text-align : center;
display: flex;
flex-direction: row;
justify-content: space-around;
place-items: center;
background-color: white;
background-attachment: fixed;
}
.nav a{
color:black;
font-size: 18px;
text-decoration: none;
}
.nav a:hover{
color:rgb(0, 156, 223);
}
.nav a:visited{
color:black;
}
.nav a:visited:hover{
color:rgb(0, 156, 223);
}
.scn{
color: black;
height: 30px;
width: 90;
padding: 4px;
border: 2px solid black;
text-decoration: none;
}
.te{
padding-top: 2.5cm;
font-size: 42px ;
float: left;
padding-left: 10%;
color: black;
}
.co{
margin: auto;
width: 50%;
padding: 10px;
margin-top: 5.5%;
text-align: center;
}
.text {
font-size: 60px;
}
.know {
font-size: 20px;
border: 0cm;
border-radius: 20px;
background-color: rgb(0, 156, 223);
padding:10px;
padding-left: 30px;
padding-right: 30px;
box-shadow: 0 0 7px 1px rgb(0, 156, 223);
color:aliceblue;
}
.know:hover {
cursor: pointer;
}
.co1 {
width:15%;
text-align: center;
margin: auto;
padding: 5px;
font-size:17px ;
line-height: 22px;
}
.cr {
float: right;
}
.soc img{
height:80px;
width:80px;
border-radius: 10px;
margin-right: 25px;
}
.other {
font-size: 2.5vw;
}
.an5 {
animation-name: down;
animation-duration: 1.5s;
animation-iteration-count: initial;
}
@keyframes down {
from {
transform: translateY(-600px);
}
to {
transform: translateY(0px);
}
}
</style>
<body class="bac">
<div class="nav">
<a href="Project.html"><b>HOME</b></a>
<a href="About.html"><b>ABOUT</b></a>
<a href="Education.html"><b>EDUCATION</b></a>
<a href="Skills.html"><b>SKILLS</b></a>
<a href="Contacts.html"><b>CONTACTS</b></a>
</div>
<div class="an5">
<h1>You can contact me at:</h1><br><br>
<div class="soc">
<a href="https://www.linkedin.com/in/jai-khanna-71a530202" target="_blank"><img src="https://cdn-icons-png.flaticon.com/512/38/38669.png" title="Linkedin"></a>
<a href="https://github.com/JackofAllCodez" target="_blank"><img src="https://cdn-icons-png.flaticon.com/512/25/25231.png" title="Github"></a>
<a href="https://twitter.com/jaikhanna6395" target="_blank"><img src="https://cdn-icons-png.flaticon.com/512/60/60580.png" title="Twitter"></a>
<a href="https://www.instagram.com/jai_khanna04" target="_blank"><img src="https://www.pngkey.com/png/full/1-13374_instagram-icon-new-black-background-vector-logo-instagram.png" title="Instagram"></a>
<a href="https://www.facebook.com/jai.khanna.5203" target="_blank"><img src="https://cdn-icons-png.flaticon.com/512/20/20673.png" title="Facebook"></a>
</div><br><br>
<div class="other">
<h2>OR</h2>
<br><b>Mail</b> : [email protected]
<br><b>Call at</b> : 8360708882
</div>
</div>
</body>
</html>