-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·138 lines (107 loc) · 4.72 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
<!DOCTYPE html>
<!--[if IE 8 ]><html class="no-js oldie ie8" lang="en"> <![endif]-->
<!--[if IE 9 ]><html class="no-js oldie ie9" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html class="no-js" lang="en"> <!--<![endif]-->
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>masha</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/vendor.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body id="top">
<!-- header
================================================== -->
<header>
<div class="row">
</div> <!-- /row -->
</header> <!-- /header -->
<!-- about section
================================================== -->
<section id="about">
<div class="row section-intro">
<div class="col-twelve">
<ul class="intro-social">
<li><a href="https://github.com/antropova"><i class="fa fa-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/antropova"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://antropovam.wordpress.com/"><i class="fa fa-wordpress"></i></a></li>
<li><a href="https://www.flickr.com/photos/antropovam"><i class="fa fa-flickr"></i></a></li>
</ul> <!-- /intro-social -->
<div class="intro-info">
<img src="images/profile-pic.jpg" alt="Profile Picture">
<p class="lead">Hi there, my name is Masha (not Marsha). I'm a Software Engineer based in NYC.</p>
<p class="lead">When I'm not banging my head on the keyboard I like exploring <a href="https://foursquare.com/antropovam">new spots</a>, finding <a href="https://www.goodreads.com/antropova">good reads</a>, and enjoy live music.</p>
<p class="lead">I'm currently working on the growth team at <a href="http://wework.com">WeWork</a> optimizing internal search tools using React.js, RoR, and Java.</p>
</div>
</div>
</div> <!-- /section-intro -->
<div class="row about-content">
<div class="col-six tab-full">
<h3>Profile</h3>
<ul class="info-list">
<li>
<strong>Full Name:</strong>
<span>Masha Antropova</span>
</li>
<li>
<strong>Job:</strong>
<span>Software Engineer</span>
</li>
</ul> <!-- /info-list -->
</div>
<div class="col-six tab-full">
<h3>Skills</h3>
<p></p>
<ul class="skill-bars">
<li>
<div class="progress percent85"><span>85%</span></div>
<strong>JavaScript</strong>
</li>
<li>
<div class="progress percent80"><span>80%</span></div>
<strong>Ruby</strong>
</li>
<li>
<div class="progress percent80"><span>80%</span></div>
<strong>Rails</strong>
</li>
<li>
<div class="progress percent75"><span>75%</span></div>
<strong>React</strong>
</li>
</ul> <!-- /skill-bars -->
</div>
</div>
<div class="row button-section">
<div class="col-twelve">
<a href="#contact" title="Get In Touch" class="button stroke smoothscroll">Get In Touch</a>
<a href="#" title="Download CV" class="button button-primary">Download CV</a>
</div>
</div>
</section> <!-- /process-->
<div id="preloader">
<div id="loader"></div>
</div>
<!-- Java Script
================================================== -->
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>