-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
162 lines (125 loc) · 5.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Supriya Kankure</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
/* script for Google Analytics */
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-74986612-1', 'auto');
ga('send', 'pageview');
</script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto:100' rel='stylesheet' type='text/css'>
<link href='myStyle.css' rel='stylesheet' type='text/css'>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="#section0">Home</a>
</li>
<li><a href="#section1">About Me</a>
</li>
<li><a href="#section4">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div id="section0">
<div class="container-fluid main">
<div class="jumbotron outer">
<div class="jumbotron inner">
<div class="wrapper">
<h1 id="name" align="center">Supriya Kankure</h1>
<p id="title" align="center">Full Stack Developer</p>
</div>
</div>
</div>
<div class="container-fluid light-background-outer">
<div id="section1">
<div class="container-fluid light-background">
<div class="row about.me">
<div class="col-md-12">
<h1 id="aboutme" align="center"> About Me </h1>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 cool">
<p id="description" style="font-size:16px" >
Hello! My name is Supriya and I am a software engineer. I obtained my BS in Computer Science from UMass Amherst in May 2017. I am experienced in building fullstack applications using technologies such as Spring, Angular, React, Node, SQL, etc. I enjoy working on creative, meaningful, and challenging projects.
Thanks for visiting my website! Be sure to connect with me below.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="section3">
<div class="container-fluid">
</div>
<div class="col-sm-2"></div>
</div>
</div>
<div id="section4">
<div class="container-fluid contact">
<h1 align="center"> Contact</h1>
<div class="row-md-12">
<div class="col-md-4">
</div>
<div class="col-md-4 icons" align="center">
<a href="https://github.com/skankure" style="text-decoration: none !important;"><img src="github1.png" class="github1" height="30px" width="30px">
<a href="https://medium.com/@supriyakankure" style="text-decoration: none !important;"><img src="medium1.png" class="medium1" height="30px" width="30px">
<a href="https://www.linkedin.com/in/supriyakankure" style="text-decoration: none !important;"><img src="linkedin1.png" class="linkedin1" height="30px" width="30px">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
function scrollNav() {
$('.nav a').click(function() {
//Toggle Class
$(".active").removeClass("active");
$(this).closest('li').addClass("active");
var theClass = $(this).attr("class");
$('.' + theClass).parent('li').addClass('active');
//Animate
$('html, body').stop().animate({
scrollTop: $($(this).attr('href')).offset().top - 160
}, 400);
return false;
});
$('.scrollTop a').scrollTop();
}
scrollNav();
</script>
</body>
</html>