-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
143 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,17 +49,54 @@ <h1>Kushal jangir</h1> | |
</div> | ||
|
||
</section> | ||
<div class="projects"> | ||
<h2 class="works">Works</h2> | ||
<table> | ||
<tr class="row1"> | ||
<td class="ac"> | ||
<h1 class="boo"> Web app </h1> | ||
<br> | ||
<h4>Develop a web application for a local business to present their services online. | ||
Tech stack - HTML CSS, JavaScript, Bootstrap, Node.js. </h4> | ||
</td> | ||
<td class="ac"><h1 class="boo">Voice-Assistant / Chatbot</h1> | ||
<br> | ||
<h4>Python based app similar to | ||
that of google assistant it | ||
can understand many voice | ||
commands and can complete | ||
tasks.</h4></td> | ||
</tr> | ||
<tr class="row1"> | ||
<td class="ac"> | ||
<h1 class="boo">Image-Recognition using DL</h1> | ||
<br> | ||
<h4>Designed a deep neural network for image recognition. | ||
Worked on techniques of Convolutional Neural Network to train the model. | ||
Used Google Cloud Vision API to recognize objects from photographs and to extract text from images. | ||
Keras, TensorFlow backend in python</h4> | ||
</td> | ||
<!-- <td class="ac"><h1 class="boo">Voice-Assistant / Chatbot</h1> | ||
<br> | ||
<h4>Python based app similar to | ||
that of google assistant it | ||
can understand many voice | ||
commands and can complete | ||
tasks.</h4></td> --> | ||
</tr> | ||
</table> | ||
</div> | ||
|
||
<div class="middle-container"> | ||
|
||
<div class="skills"> | ||
<div class="skill-row"> | ||
<img class="static" id="gip" src="images/giphy.gif" alt="code_img"> | ||
<!-- <img class="static" id="gip" src="images/giphy.gif" alt="code_img"> --> | ||
</div> | ||
|
||
|
||
|
||
<section id="features"> | ||
<!-- <section id="features"> | ||
<h3>PROJECTS</h3> | ||
<div class="row row-icons"> | ||
<div class="easy col-sm-4"> | ||
|
@@ -106,12 +143,12 @@ <h4>Designed a deep neural network for image recognition. | |
</div> | ||
</div> | ||
</div> | ||
</section> | ||
</section> --> | ||
</div> | ||
</div> | ||
<div class="skill-row"> | ||
<!-- <img class="animated" src="images/200w2.webp" alt="animated"> --> | ||
<h3>Core Skills</h3> | ||
<h2>Core Skills</h2> | ||
<ul> | ||
|
||
</ul> | ||
|
@@ -126,7 +163,7 @@ <h3>Core Skills</h3> | |
|
||
<!-- <hr> --> | ||
|
||
<h2>FIND ME ON</h2> | ||
<h2>Contact Me</h2> | ||
|
||
|
||
<div class="bottom-container"> | ||
|
@@ -136,16 +173,19 @@ <h2>FIND ME ON</h2> | |
<a class="footer-link" href="https://twitter.com/kushal__21"><i class="footer fab fa-twitter"></i></a> | ||
<a class="footer-link" href="https://github.com/7kushal"><i class="footer fab fa-github"></i></a> | ||
<a class="footer-link" href="mailto:[email protected]"><i class="footer far fa-envelope"></i></a> | ||
<p>Kushal jangir</p> | ||
<!-- <p></p> --> | ||
</div> | ||
|
||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-q2kxQ16AaE6UbzuKqyBE9/u/KzioAlnx2maXQHiDX9d4/zp8Ok3f+M7DPm+Ib6IU" crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-pQQkAEnwaBkjpqZ8RU1fF1AKtTcHJwFl3pblpTlHXybJjHpMYo79HY3hIi4NKxyj" crossorigin="anonymous"></script> | ||
<script> | ||
const x = document.querySelector(".cursor"); | ||
document.addEventListener('mouseover',function(e){ | ||
x.setAttribute("style","top:"+(e.pageY -10)+"px; left:"+(e.pageX-10)+"px;"); | ||
console.log(e); | ||
document.addEventListener('mousemove',function(e){ | ||
x.setAttribute("style","top:"+(e.pageY-18)+"px; left:"+(e.pageX-19)+"px;"); | ||
|
||
}); | ||
document.addEventListener('wheel',function(e){ | ||
x.setAttribute("style","top:"+(e.pageY-19)+"px; left:"+(e.pageX-19)+"px;"); | ||
|
||
}); | ||
function myFunction() { | ||
|