-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
234 lines (234 loc) · 9.52 KB
/
index.html
File metadata and controls
234 lines (234 loc) · 9.52 KB
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Portfolio - HowToCoder a Software Developer from Mumbai, India</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- part 1 -->
<nav class="navbar navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="">HowToCoder</a>
</div>
<!-- Collect the nav links for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right"> <!--right aligned nav links-->
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!-- part 1 ended -->
<!-- part 2 -->
<div class="container-fluid about" id="about">
<div class="row">
<div class="col-md-6 col-md-push-3">
<div class="picture">
<img class="img img-responsive" src="img/howtocoder.PNG" alt="howtocoder profile picture" />
</div>
</div>
<div class="col-md-8 col-md-push-2">
<div class="text-center">
<span class="page-title">HowToCoder</span>
<p>Hi, I am Premprakash Singh, a Software Developer from Mumbai, India.
I am a learner who loves to code and attending tech meetups.
I am a freecodecamper and a member of Chingu cohort as well
(Bearded Dragon June cohort & Chingu-voyage cohort) and
a newbie in open source development.
</p>
<p>I am currently working at Speedbox.
I mostly write Javascript and do Web development, both frontend and backend.
I am passionate about coding.
Besides programming i love to watch comedy movies and web series and spending time with my friends.
I explore different areas of technologies on weekends and love to attend tech meetups.
</p>
</div>
</div>
</div>
</div>
<!-- part 2 ended -->
<!-- part 3 -->
<div class="container-fluid projects" id="projects">
<div class="text-center">
<span class="page-title" style="font-size: 4em;">PORTFOLIO</span>
</div>
<div class="row">
<div class="col-md-4">
<div class="project-item thumbnail">
<div>
<a href="https://howtocoder.github.io/Weather-App/" target="_blank">
<img src="img/weather-app.PNG" class="img img-responsive" alt="Freecodecamp Weather App Project">
</a>
</div>
<div class="project-item-text">
<h4>FCC Weather App</h4>
<h5>Freecodecamp's Weather App Project Using Open Weather API.</h5>
</div>
</div>
</div>
<div class="col-md-4">
<div class="project-item thumbnail">
<div>
<a href="https://howtocoder.github.io/Random-Quote-Machine/" target="_blank">
<img src="img/Fcc_QuoteMachine.PNG" class="img img-responsive" alt="Freecodecamp Random Quote Machine">
</a>
</div>
<div class="project-item-text">
<h4>FCC Random Quote Machine</h4>
<h5>Freecodecamp's Random Quote Machine Project Using Random Famous Quotes API.</h5>
</div>
</div>
</div>
<div class="col-md-4">
<div class="project-item thumbnail">
<div>
<a href="https://howtocoder.github.io/Wikipedia-Viewer/" target="_blank">
<img src="img/Fcc_Wikipedia.PNG" class="img img-responsive" alt="Freecodecamp Wikipedia Viewer">
</a>
</div>
<div class="project-item-text">
<h4>FCC Wikipedia Viewer</h4>
<h5>Freecodecamp's Wikipedia viewer project using Wikipedia API.</h5>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="project-item thumbnail">
<div>
<a href="https://howtocoder.github.io/Twitch-Tv-App/" target="_blank">
<img src="img/twitch-tv.PNG" class="img img-responsive" alt="Freecodecamp Random Quote Machine">
</a>
</div>
<div class="project-item-text">
<h4>FCC Twitch Tv App</h4>
<h5>Freecodecamp's Twitch Tv App Project Using Twitch Tv API.</h5>
</div>
</div>
</div>
<div class="col-md-4">
<div class="project-item thumbnail">
<div>
<a href="//howtocoder.com/" target="_blank">
<img src="img/coming-soon.png" class="img img-responsive" alt="Coming-soon">
</a>
</div>
<div class="project-item-text">
<h4>Next Fcc Project</h4>
<h5>Freecodecamp's Next Project coming soon.</h5>
</div>
</div>
</div>
<div class="col-md-4">
<div class="project-item thumbnail">
<div>
<a href="//howtocoder.com/" target="_blank">
<img src="img/coming-soon.png" class="img img-responsive" alt="Coming-soon">
</a>
</div>
<div class="project-item-text">
<h4>Next Fcc Project</h4>
<h5>Freecodecamp's Next Project coming soon.</h5>
</div>
</div>
</div>
</div>
</div>
<!-- part 3 ended -->
<!-- part 4 -->
<div class="container-fluid contact" id="contact">
<div class="text-center">
<span class="page-title" style="font-size: 4em;">CONTACT</span>
</div>
<div class="row">
<div class="col-md-6 col-md-push-3">
<form class="form" method="POST" action="https://formspree.io/premsingh.singh386@gmail.com">
<div class="row">
<div class="col-md-12">
<input type="text" class="form-control" name="name" placeholder="Name" required />
</div>
</div> <!-- Name ended-->
<div class="row">
<div class="col-md-12">
<input type="email" class="form-control" name="_replyto" placeholder="Email Address" required />
</div>
</div> <!-- Email ended-->
<!-- hidden fields -->
<input type="hidden" name="_next" value="https://howtocoder.github.io">
<input type="hidden" name="_subject" value="Portfolio - New submission!">
<input type="text" name="_gotcha" style="display:none">
<!-- hidden fields ended -->
<div class="row">
<div class="col-md-12">
<input type="text" class="form-control" name="phone" placeholder="Phone Number" />
</div>
</div> <!-- Phone no ended-->
<div class="row">
<div class="col-md-12">
<textarea name="msg" class="form-control" rows="5" cols="80" placeholder="Message"
style="resize: none;" required></textarea>
</div>
</div> <!-- Message ended-->
<br />
<div class="row">
<div class="col-md-12">
<input type="submit" class=" btn btn-lg btn-success" name="submit" value="Submit" />
</div>
</div> <!-- Submit ended-->
</form>
</div>
</div>
</div>
<!-- part 5 -->
<div class="container-fluid web">
<div class="row">
<div class="col-md-4 col-md-push-4">
<!-- <p></p> -->
<div class="link text-center">
<h3>Around the web</h3>
<a href="https://twitter.com/premp_singh" target="_blank">
<i class="fa fa-2x fa-twitter" aria-hidden="true"></i>
</a>
<a href="https://www.linkedin.com/in/prem-singh-a0921293/" target="_blank">
<i class="fa fa-2x fa-linkedin" aria-hidden="true"></i>
</a>
<a href="https://github.com/HowToCoder" target="_blank">
<i class="fa fa-2x fa-github" aria-hidden="true"></i>
</a>
<a href="https://medium.com/@premsingh" target="_blank">
<i class="fa fa-2x fa-medium" aria-hidden="true"></i>
</a>
<p>Copyright © 2018 By <a href="https://github.com/HowToCoder">HowToCoder</a></p>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous">
</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous">
</script>
</body>
</html>