-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (114 loc) · 5 KB
/
index.html
File metadata and controls
125 lines (114 loc) · 5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Portfolio - Yog Mehta </title>
<link href="https://fonts.googleapis.com/css?family=Spectral+SC" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
</head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-121108585-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-121108585-1');
</script>
<body>
<nav class="navbar">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-nav-demo" 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 href="#" class="navbar-brand">Yog Mehta</a>
</div>
<div class="collapse navbar-collapse" id="bs-nav-demo">
<ul class="nav navbar-nav">
<li>
<a href="#skills">
<i class="fa fa-superpowers" aria-hidden="true"></i> Skills </a>
</li>
<li>
<a href="#projects">
<i class="fa fa-code" aria-hidden="true"></i> Projects </a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="#contact">Contact</a>
</li>
<li>
<a href="#presence">Presence</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="jumbotron">
<p class="text-center"> 15. Autodidact. More about me <a href="about.html"> here </a>
</p>
</div>
<div id="skills">
<hr> </hr>
<h2 class="text-center"> Skilled in: </h2>
<div class="row">
<div class="col-md-4 col-sm-6">
<h3> 1. HTML & CSS </h3>
<p> Learned: HTML5, CSS3, Bootstrap <br />
Learning: Responsive & Mobile Design, Web Animations (CSS)
</p>
</div>
<div class="col-md-4 col-sm-6">
<h3> 2. JavaScript </h3>
<p> Learned: Basic JS <br />
Learning: DOM Manipulation, Node.js
</p>
</div>
<div class="col-md-4 col-sm-6">
<h3> 3. Python </h3>
<p> Learned: Python Standard Library and Implementations, Interacting with APIs <br />
Learning: Object-Oriented Programming, Data Analysis
</p>
</div>
<div class="col-sm-12">
<h3> * Deep Learning </h3>
<p> Learned: CNNs for Classifying Images <br />
Learning: Applications for Structured Data, NLP, Recommendation Systems
</p>
</div>
</div>
<div id="projects">
<hr> </hr>
<h2 class="text-center"> Projects </h2>
<div class="row">
<div class="col-sm-12">
<img src="./img/classifier.png" alt="An image classifier">
<p id="caption"> A two category image classifier built with cutting edge DL. </p>
</div>
</div>
</div>
<div class="footer" id="contact presence">
<div class="row">
<div class="col-sm-6">
<h2> Read my code or articles </h2>
<a href="https://github.com/BitYog" target="_blank"><i id="icons" class="fa fa-github"> </i> </a>
<a href="https://medium.com/@yobm212003" target="_blank"><i id="icons" class="fa fa-medium"> </i> </a>
</div>
<div class="col-sm-6">
<h2> Social presence </h2>
<a href="https://angel.co/yog-mehta" target="_blank"><i id="icons" class="fa fa-angellist"> </i> </a>
<a href="https://www.linkedin.com/in/yog-mehta-199837144/" target="_blank"><i id="icons" class="fa fa-linkedin"> </i> </a>
<a href="https://twitter.com/YogMehta6" target="_blank"><i id="icons" class="fa fa-twitter"> </i> </a>
</div>
</div>
</div>
</body>
</html>