-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
200 lines (170 loc) · 4.14 KB
/
about.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<!DOCTYPE HTML>
<html>
<head>
<title>About-Hardik Sharma</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="logos\favicon.png" type="image/x-icon">
<link rel="stylesheet" type="text/css" media="(min-width:600px)" href="navbar.css">
<link rel="stylesheet" type="text/css" media="(max-width:600px)" href="m_navbar.css">
<link rel="stylesheet" type="text/css" media="(min-width:600px)" href="footer.css">
<link rel="stylesheet" type="text/css" media="(max-width:600px)" href="m_footer.css">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@900&family=Raleway:wght@400;600;900&display=swap" rel="stylesheet">
<style>
#me1{
height:23vw;
width:23vw;
margin: 4vw 10vw;
float:left;
position:absolute;
}
#me2 {
position: absolute;
height: 23vw;
width: 23vw;
margin: 4vw 27vw;
z-index:10;
}
.image_center
{
display:block;
margin:0 auto;
height:30vw;
width:60vw;
box-sizing:border-box;
}
.image_center img{
border-radius:100%;
width:inherit;
height:inherit;
object-fit:cover;
object-position:42%;
}
.about{
box-sizing:border-box;
margin:12vh auto 6vh;
width:70%;
text-align:justify;
}
.about > h2
{
font-weight:bolder;
font-size:5vw;
text-align:center;
font-family:'Lato', sans-serif;
text-decoration:underline;
}
.content{
position:relative;
border:2px black solid;
font-family:Raleway;
text-align:justify;
padding:0 10vw;
font-size:1.5vw;
width:60vw;
margin:auto;
}
#main{
position:relative;
margin-top:3vh;
margin-bottom:10vh;
width:100%;
box-sizing:border-box;
}
@media only screen and (max-width:600px)
{
.about{
margin:12vh auto 8vh;
width:80vw;
}
.about h2
{
font-size:5vh;
}
#me1
{
margin:4vw 3vw;
height:23vh;
width:23vh;
}
#me2
{
height:23vh;
width:23vh;
}
.image_center
{
height:30vh;
width:70vw;
}
.content
{
width:80vw;
font-size:2vh;
padding:1vh 3vw;
border:1px solid black;
}
}
</style>
<script src="nav_mobile.js">
</script>
</head>
<body>
<div id="navbar">
<div class="mylogo"><a href="index.html"><img class="mylogo" src="logos\mylogo.jpeg"></a></div>
<nav>
<a class="top" href="index.html">HOME</a>
<a class="top" href="about.html">ABOUT </a>
<a class="top" href="gallery.html">GALLERY</a>
<a class="top" href="blog.html">BLOG</a>
<a class="top" href="contact.html">CONTACT</a>
<div class="outer" onclick="animate_ham()">
<div class="inner"></div>
<div class="inner"></div>
<div class="inner"></div>
</div>
</nav>
</div>
CSS RENDERING ...
<div id="m_navbar">
<a class="m_top" href="index.html">HOME</a>
<a class="m_top" href="about.html">ABOUT </a>
<a class="m_top" href="gallery.html">GALLERY</a>
<a class="m_top" href="blog.html">BLOG</a>
<a class="m_top" href="contact.html">CONTACT</a>
</div>
<div class="about">
<h2>ABOUT</h2>
</div>
<div id="main">
<div class="image_center">
<div id="me1">
<img src="logos\me.jpg">
</div>
<div id="me2">
<img src="logos\mylogo.jpeg">
</div>
</div>
<div class="content">
<p>My name's Hardik Sharma. Photography is my art, pixels are my canvas and my phone's camera is my brush. And I try to paint the most vivid of expressions, emotions and glimpses of everything around me. I like to click, write, code, learn UX/UI and (sometimes) read. I am currently 19 and pursuing Bachelors in Technology at National Institute of Technology, Kurukshetra(you can find me there clicking a picture or two ;-p).</p><p> Feel free to contact me using the Contact page or through the handles given below!</p>
</div>
</div>
<footer id="foot">
<div class="socicon">
<a href="https://www.instagram.com/hardiks_51/">
<img src="logos\instagram.jpg" >
</a>
</div>
<div class="socicon">
<a href="https://www.linkedin.com/in/hardik-sharma-a0682b196">
<img src="logos\linkedin.png" >
</a>
</div>
<div class="socicon">
<a href="mailto:hardik00051@gmail.com">
<img src="logos\mail.png" >
</a>
</div>
<div id="footext">©Copyright 2020,Hardik Sharma. All rights reserved.</div>
</footer>
</body>
</html>