-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (97 loc) · 4.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>amankhanathani</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat&family=Nunito&family=Quicksand&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<main>
<!-- *********************** ABOUT / PROFILE *********************** -->
<header>
<div class = "warp">
<h1>AMAN KHAN</h1>
<h2>DEVELOPER IN MAKING</h2>
<p>I'm a 21 year old computer enthusiast.<br>I'm currently studying Computer Science in KLE Technological University in Hubli,India.</p>
<p>TRY, FAIL,LEARN</p>
</div>
</header>
<!-- ******************** PROJECTS / PORTFOLIO ********************* -->
<section class = "projects">
<div class = "warp divider">
<h2>Featured Projects</h2>
<p>View notable projects below. <br>Some other projects can be found here at <a href="https://github.com/amankhanathani">github.com/amankhanathani</a>.</p>
<!-- Copy the whole <section> block to add more projects. -->
<section class = "projectitem">
<img src="images\moonlightpaint.jpg" alt="description of image">
<h3>RATING RELIABILITY OF ONLINE PRODUCT REVIEWS</h3>
<p>The model tries to break down into the Reviews part of an online shopping site. And suggests us reviews based on a reliability rate.</p>
<a href="https://github.com/amankhanathani/RATING-RELIABILITY-OF-ONLINE-PRODUCT-REVIEWS" target="_blank">View project</a>
</section>
<section class = "projectitem">
<img src="images\jess-bailey-X5gDoysLbBc-unsplash.jpg" alt="description of image">
<h3>ANONYMOUS SECRET SHARING SERVICE</h3>
<p>An application where people can share their thoughts with the masses anonymously</p>
<a href="https://secretsharing.herokuapp.com/" target="_blank">Try this App</a><br><br>
<a href="https://github.com/amankhanathani/Anonymous-Secret-Sharing" target="_blank">View project</a>
</section>
<!-- End of Project block. -->
</div>
</section>
<!-- *********************** WORK EXPERIENCE *********************** -->
<section class ="workexp">
<div class = "warp item-details divider">
<h2>Work Experience</h2>
<!-- <p>Optional paragraph for work experience summary. Not a part of the job details. Delete if not being used.</p> -->
<!-- Copy this whole <section> block to add more jobs. -->
<section class="job-item">
<div class="job-details">
<h3>Research Intern</h3>
<p>KNIT ARENA</p>
<p>JUNE/JULY 2020</p>
</div>
<div class="job-summary">
<p>Worked on aspects of Machine Learning relating to the human mind.</p>
<p>Worked done:</p>
<ul>
<li>Implemented and compared various types of reviews and feedbacks on an E-commerce application.</li>
<li>Developed a model that breaks down the reviews.</li>
<li>And efficently suggest the most dependable ones based on a calculated reliability rate.</li>
<!-- <li>Responsible for...</li> -->
</ul>
</div>
</section>
<!-- End of Job block. -->
</div>
</section>
<!-- ****************** EDUCATION & CERTIFICATIONS ****************** -->
<section class="education">
<div class="warp item-details">
<h2>Education</h2>
<!-- Copy this whole <section> block to add more schools. -->
<section>
<h3>KLE TECH HUBLI</h3>
<p>STUDENT, 3RD YEAR BE</p>
<p>GPA: 8.4</p>
</section>
</div>
<!-- End of School block. -->
</section>
<!-- ***************** CONTACT INFO / SOCIAL MEDIA ***************** -->
<footer>
<div class = "warp">
<h2>Let's Keep in Touch!</h2>
<p>You can find me on most social media platforms. Feel free to text me.<br>Please only use my email for business inquires,<br>or other important issues.</p>
<!-- Social media and contact links. Add or remove any networks. -->
<ul class="contacts">
<li><a href="mailto:[email protected]">[email protected]</a></li>
<li><a href="https://github.com/amankhanathani" target="_blank">Github</a></li>
<li><a href="https://www.linkedin.com/in/amankhanathani" target="_blank">LinkedIn</a></li>
</ul>
</div>
</footer>
</main>
</body>
</html>