-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (114 loc) · 3.42 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
<!DOCTYPE html>
<html>
<head>
<title>Jai Srivastav</title>
<link href='http://fonts.googleapis.com/css?family=Lobster|Merriweather+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/screen.css">
<script type="text/javascript" src="js/jquery-1.11.0.min.js"> </script>
<script type="text/javascript" src="js/jquery-ui.min.js"> </script>
<script type="text/javascript" src="js/smooth-scroll.js"> </script>
<script jype="text/javascript" src="js/script.js"> </script>
</head>
<body>
<div id="banner">
<div id="bannerText">
<span class="bannerDash">—</span>
<div class="changingText">.</div>
<span class="bannerDash">—</span>
<span id="bannerSubscript">
Talented Freelancer Based in the Bay Area
</span>
</div>
<div class="centerHelper"></div>
</div>
<header>
<div class="wrapper">
<div class="link" id="logo">Jai Srivastav</div></a>
<ul id="navbar">
<li class="link navBarLink" id="aboutLink">About</li>
<li class="link navBarLink" id="skillsLink">Skills</li>
<li class="link navBarLink" id="portfolioLink">Portfolio</li>
<li class="link navBarLink" id="contactLink">Contact</li>
</ul>
</div>
</header>
<div id="about">
<div class="wrapper">
<h1>A Little About Me</h1>
<hr />
<div id="about_boxes">
<div class="box">
<div id="technology_image" class="image"></div>
<p>I have a passion for programming.</p>
</div>
<div class="box">
<div id="mun_image" class="image"></div>
<p>I am the vice president of Model United Nations.</p>
</div>
<div class="box">
<div id="piano_guitar_image" class="image"></div>
<p>I enjoy playing piano and guitar.</p>
</div>
<div class="box">
<div id="food_image" class="image"></div>
<p>I am addicted to good food.</p>
</div>
</div>
</div>
</div>
<div id="skills">
<div class="wrapper">
<h1>What Can I Do For You?</h1>
<hr />
<table class="skillsTable">
<tr>
<td>
<div class="progressBoxes">
<div class="progressBox">
<span class="label">iOS</span>
<span class="percentage">90%</span>
<div class="progress progress90">
<div class="completed"></div>
<div class="uncompleted"></div>
</div>
</div>
<div class="progressBox">
<span class="label">Android</span>
<span class="percentage">80%</span>
<div class="progress progress80">
<div class="completed"></div>
<div class="uncompleted"></div>
</div>
</div>
<div class="progressBox">
<span class="label">HTML/CSS</span>
<span class="percentage">90%</span>
<div class="progress progress90">
<div class="completed"></div>
<div class="uncompleted"></div>
</div>
</div>
<div class="progressBox">
<span class="label">Ruby on Rails</span>
<span class="percentage">80%</span>
<div class="progress progress80">
<div class="completed"></div>
<div class="uncompleted"></div>
</div>
</div>
</div>
</td>
<td class="skillsDescriptionTableElement">
<p class="skillsDescription">
I think of myself as an iOS and web developer.
</p>
<p class="skillsDescription">
I can use many common technologies such as Git, NodeJS, and Ruby on Rails.
</p>
</td>
</tr>
</table>
</div>
</div>
</body>
</html>