-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
77 lines (67 loc) · 5.76 KB
/
portfolio.html
File metadata and controls
77 lines (67 loc) · 5.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio - Arun Roshan</title>
<link rel="stylesheet" href="portfolio.css">
</head>
<body>
<header>
<div class="container">
<h1>Welcome to Arun Roshan's Portfolio</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutme.html">About Me</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="achive.html">Achievement</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="blog.html">Articles</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="portfolio">
<div class="container">
<h2 style="margin-top: 5%; margin-bottom: 5%;">Portfolio</h2>
<div class="project">
<h3>SAHAYAKA(Specs for Disabled People)</h3>
<p>Description: Communication barriers between people with different abilities can cause social exclusion and low quality of life. This project aims to create specs that can translate sign language into speech, and vice versa, using a camera, speakers, and a mobile app. The camera captures the gestures and the app recognize the action using a pre-installed dataset and the speakers echo the recognized data to the user. The device can help people who are hard of hearing, visually impaired, or speaking disabled to communicate more easily and effectively with others. The device is designed to be safe, discreet, and user-friendly. This project hopes to make a positive difference in the world by improving communication and the inclusion of people with different abilities.</p>
<p>Link: <a href="https://github.com/Arun-Roshan/Sign-lanuage-detection-app.git" target="_blank"><span style="color: aqua;">Visit the project</span></a></p>
</div>
<div class="project">
<h3>Healthcare App</h3>
<p>Description: Healthcare applications offer numerous benefits to users. First and foremost, they provide convenience and accessibility by allowing individuals to access medical services anytime, anywhere. Users can schedule appointments, order medications, and view test results from the comfort of their homes, reducing the need for physical visits to clinics or hospitals. These apps also facilitate personalized health management, enabling users to track vital signs, medications, and allergies. Timely reminders ensure adherence to medication schedules and follow-up appointments.
Moreover, healthcare apps serve as valuable sources of information and education. They offer health-related articles, tips, and preventive measures, empowering users to make informed decisions about their well-being. Lab test booking and result retrieval become seamless, eliminating the hassle of waiting in long queues. Additionally, finding specialist doctors is simplified through app-based searches, leading to quicker consultations and better healthcare outcomes.
Lastly, these apps prioritize privacy and security. Users have control over their health data, and stringent security measures safeguard sensitive information. Overall, healthcare applications enhance convenience, promote proactive health management, and contribute to overall wellness. </p>
<p>Link: <a href="https://github.com/Arun-Roshan/SPN-HealthCare.git" target="_blank"><span style="color: aqua;">Visit the project</span></a></p>
</div>
<div class="project">
<h3>Online Movie Streaming Website</h3>
<p>Description: An online movie streaming website built using HTML, CSS, and JavaScript offers a sleek and responsive platform for users to browse and watch movies. The homepage features categorized sections like "Trending Now" and "New Releases," with movie thumbnails displaying hover effects. Users can filter and sort movies, view detailed pages with synopses and trailers, and add films to their watchlist. The site includes a secure user authentication system, allowing personalized dashboards and viewing histories. Enhanced by a responsive design, dynamic content updates, and interactive features, the site provides an engaging user experience across all devices.</p>
<p>Link: <a href="https://github.com/Arun-Roshan/Online-Movie-Streaming-Website.git" target="_blank"><span style="color: aqua;">Visit the project</span></a></p>
</div>
<div class="testimonials">
<h3>Client Testimonials</h3>
<blockquote>
<p>"Arun's dedication and expertise were instrumental in delivering our project on time and within budget. His attention to detail and innovative approach significantly enhanced our product."</p>
<!-- <footer>Name, Position, Company</footer> -->
</blockquote>
<blockquote>
<p>"Working with Arun was a pleasure. His professionalism and technical skills ensured a smooth development process and a high-quality end product. I would highly recommend him for any software development project."</p>
<!-- <footer>Name, Position, Company</footer> -->
</blockquote>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Arun Roshan. All rights reserved.</p>
</div>
</footer>
<script src="portfolio.js"></script>
</body>
</html>