-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (95 loc) · 3.38 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" ,viewport-fit='cover'>
<title>tech4gt - Varun Gupta</title>
<link rel=stylesheet type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="font-awesome-4.7.0/css/font-awesome.min.css">
<style>
a {
color: white;
}
.list-inline-item {
padding: 10px;
}
html,
body {
margin: 0;
height: 100%;
overflow: hidden
}
body {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
font-family: 'Merriweather Sans', sans-serif;
}
.hidden-span {
padding-left: 10px;
display: none;
}
@media only screen and (max-width: 532px) {
.list-inline {
padding-left: 20px !important;
}
.list-inline-item {
display: block;
}
.hidden-span {
display: inline;
}
#main-image {
display: none !important;
}
body {
background-position-x: -75px !important;
}
}
@media only screen and (max-width: 350px) {
body {
background-position-x: -130px !important;
}
}
</style>
</head>
<body style="background-image: url('./images/back.jpg');color: white;">
<header>
<h1 style="letter-spacing: 15px;padding-top: 30px;padding-left: 30px;font-size: 50px" class="display-4">VARUN
GUPTA</h1>
<ul class="list-inline" style="padding-left: 100px">
<li class="list-inline-item">
<a href="https://www.github.com/tech4gt">
<i class="fa fa-github fa-2x" aria-hidden="true"></i>
<h3 class="hidden-span"> Github</h3>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.facebook.com/varunvasta">
<i class="fa fa-facebook-official fa-2x" aria-hidden="true"></i>
<h3 class="hidden-span"> Facebook</h3>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/tech4gt/">
<i class="fa fa-linkedin-square fa-2x" aria-hidden="true"></i>
<h3 class="hidden-span"> Linkedin</h3>
</a>
</li>
<li class="list-inline-item">
<a href="https://medium.com/@tech4gt">
<i class="fa fa-medium fa-2x" aria-hidden="true"></i>
<h3 class="hidden-span"> Medium</h3>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.quora.com/profile/Varun-Gupta-384">
<i class="fa fa-quora fa-2x" aria-hidden="true"></i>
<h3 class="hidden-span"> Quora</h3>
</a>
</li>
</ul>
</header>
<!-- <img id="main-image" style="padding-top: 5%" src="images/main.png" class="mx-auto d-block text-center img-fluid justify-content-center"> -->
</body>
</html>