-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
109 lines (102 loc) · 5.22 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbs5G5Tp1X6jCCcmF4AZFqTmL3en5t46P4YPJwJYAgIyoCrENmMG8iB04meM2KxX" crossorigin="anonymous">
<link rel="stylesheet" href="css\index.css">
<link rel="stylesheet" href="css\about.css">
<title>About Me</title>
</head>
<body>
<header class="container">
<div class="page-header">
<div class="logo">
<a href="#">About Me</a>
</div>
<input type="checkbox" id="click">
<label for="click" class="mainicon">
<div class="menu">
<i class="bx bx-menu"></i>
</div>
</label>
<ul>
<li><a href="index.html" class="active" style="--navAni:1">Home</a></li>
<li><a href="skills.html" style="--navAni:3">Skills</a></li>
<li><a href="contact.html" style="--navAni:5">Contact</a></li>
</ul>
</div>
</header>
<div class="container">
<section class="about-section">
<h1>About Me</h1>
<p>
Hi, I'm Manish Kumar, a passionate programmer and a full-stack developer with experience in
<i class="fab fa-python"></i> Python for 1 year. I have expertise in
<i class="fab fa-html5"></i> HTML,
<i class="fab fa-css3-alt"></i> CSS,
<i class="fab fa-js"></i> JavaScript, and
<i class="fab fa-java"></i> Java. I created this page to showcase my skills and projects.
</p>
</section>
<section class="projects-section">
<h2>Projects</h2>
<div class="projects">
<div class="project">
<a href="https://github.com/tentax143/breast-cancer.git" target="_blank">
<img src="images\breastcancer.png" alt="Cancer Detection">
</a>
<h3>Cancer Detection</h3>
<p>A system to detect breast cancer using machine learning algorithms.</p>
</div>
<div class="project">
<a href="https://tentax143.github.io/hospital-sample-website/" target="_blank">
<img src="images\hosweb.png" alt="Hospital Website">
</a>
<h3>Hospital Website</h3>
<p>A comprehensive website for managing hospital operations and patient information.</p>
</div>
<div class="project">
<a href="https://github.com/tentax143/addmission.git" target="_blank">
<img src="images\collage.png" alt="College Admission Website">
</a>
<h3>College Admission Website</h3>
<p>An online platform for managing college admissions and student applications.</p>
</div>
<div class="project">
<a href="#" target="_blank">
<img src="images\anemia.png" alt="Anemia Detection">
</a>
<h3>Anemia Detection</h3>
<p>A machine learning-based tool to detect anemia from medical data.</p>
</div>
<div class="project">
<a href="https://github.com/tentax143/AWS-IGRESS.git" target="_blank">
<img src="images\aws.png" alt="Amazon Recommendation System">
</a>
<h3>Amazon Recommendation System</h3>
<p>A recommendation system to suggest products to users based on their browsing history.</p>
</div>
<div class="project">
<a href="https://github.com/tentax143/ramcohuman.git" target="_blank">
<img src="images\human detedtion.jpeg" alt="Human Detection">
</a>
<h3>Human Detection</h3>
<p>A system to detect humans using computer vision techniques.</p>
</div>
<div class="project">
<a href="https://github.com/skrajmuthu/rit_hostel_booking.git" target="_blank">
<img src="images\hostel.png" alt="hostel room booking System">
</a>
<h3>hostel room booking System</h3>
<p></p>
</div>
</div>
</section>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXAet/1Qw9faXPMl1U/i9jaBtQzC6CquF5ST" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-b4gt1jrGC7Jh4AgTPSdUtOBvfO8sh+Wy5qO8ANg9eYYp2InDzjsU5I6voY+bq4Q" crossorigin="anonymous"></script>
</body>
</html>