-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·173 lines (162 loc) · 6.77 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
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
<!DOCTYPE html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Hi! I am Shikha">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Facebook Open Graph meta -->
<meta property="og:title" content="Shikha Khatry">
<meta name="msapplication-TileColor" content="#ffffff">
<title>Shikha Khatry</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
</head>
<body>
<section class="main-container">
<div class="blocks">
<div class="block block--left" id="overlay">
<span class="overlay"></span>
<div class="block__inner">
<div class="block-content">
<h1 class="block__title main-name">
<span class="name relative">
Shikha Khatry
<span class="half-border"></span>
</span>
</h1>
<h1 class="block__title">
<span>Junior at LNMIIT</span>
</h1>
<div class="block__social">
<a href="mailto:[email protected]" class="btn_email">[email protected]</a>
<div class="block__social"><br />
<a href="http://github.com/khatryshikha" class="github" target="_blank" />
<img src="img/social-1_logo-github.svg" />
</a>
<a href="https://www.facebook.com/shikha.khatry2" class="facebook" target="_blank">
<img src="img/social-1_logo-facebook.svg" />
</a>
<a href="https://www.linkedin.com/in/shikha-khatry-91795812b/" class="linkedin" target="_blank">
<img src="img/social-1_logo-linkedin.svg" />
</a>
</div>
</div>
</div>
</div>
</div>
<div class="block block--right">
<div class="wrapper" id="wrapper">
<div class="block__inner">
<div class="contents">
<div class="content content--about">
<h2 class="content__tag">
<span class="title relative">
ABOUT ME.
<span class="half-border"></span>
</span>
</h2>
<div class="content__inner">
<br>I am third year student at LNM Institute of Information Technology, Jaipur. I am a passionate
coder with a penchant for detail. Academically inclined I believe in doing due dilligence to all the
tasks I take up.<br> <br>My other passions include public speaking, writing and astronomy.
<br><br>
<a href="https://drive.google.com/open?id=1C0Bj_OE1xS4TuTkd6E_IxyPpV4pTPF63"><button type="button"
class="btn btn-dark">My resume</button>
</a>
</div>
</div>
<div class="content content--projects">
<h2 class="content__tag">
<span class="title relative">
PROJECTS.
<span class="half-border"></span>
</span>
</h2>
<div class="content__inner">
<div class="project">
<div class="meta-title">TWITTER-STREAMING</div>
The Project has set of APIs created to store twitter streaming data and retrieve data based on
applied filters.
</div>
</div>
<div class="content__inner">
<div class="project">
<div class="meta-title">URL Shortener</div>
The Project is URL shortening application written using the Django framework. Features : It
includes functionality for creating custom shortened URLs.
</div>
</div>
<div class="content__inner">
<div class="project">
<div class="meta-title">CSV Browser</div>
CSV Browser is the webapp to browse and display data from csv files written using the Django
framework.
</div>
</div>
<div class="content__inner">
<div class="project">
<div class="meta-title">MEDIHIST- REVOLUTIONISING HEALTHCARE</div>
MediHist is a website which gives comprehensive solution just like Aadhaar to your personal
medicalrecord needs.
</div>
</div>
<div class="content__inner">
<div class="project">
<div class="meta-title">Todos</div>
The Application is a simple Todo lister. Till now we have made a basic Django project. We will
expand it it to user based todos and are learning hosting on Heroku for it.
</div>
</div>
</div>
<div class="content content--skills">
<h2 class="content__tag">
<span class="title relative">
EXPERIENCE.
<span class="half-border"></span>
</span>
<br>
</h2>
<div class="content__inner">
<div class="project">
<div class="meta-title">SOFTWARE ENGINEER INTERN :</div>
<span class="skill"><li>FUSION SOFTWARE SOLUTION</li></span>
<span class="skill"><li>3S LOGICS</li></span><br>
</div>
</div>
<!-- </div> -->
</div>
</div>
<div class="content content--skills">
<h2 class="content__tag">
<span class="title relative">
SKILLS.
<span class="half-border"></span>
</span>
<br>
<br>
</h2>
<span class="skill"><li>HTML/CSS/Bootstrap</li></span>
<span class="skill"><li>C/C++</li></span>
<span class="skill"><li>Python/Django Framework</li></span>
<span class="skill"><li>Basic Java</li></span>
<span class="skill"><li>MySQL and MongoDB</li></span><br>
</div>
<!-- </div> -->
</div>
</div>
</div>
</section>
<script>
function myFunction() {
var x = document.getElementById('myDIV');
if (x.style.display === 'none') {
x.style.display = 'block';
} else {
x.style.display = 'none';
}
}
</script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>