-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork.html
More file actions
101 lines (99 loc) · 6.75 KB
/
Copy pathwork.html
File metadata and controls
101 lines (99 loc) · 6.75 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
<html>
<head>
<meta charset="UTF-8">
<title>WORK</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,200&display=swap" rel="stylesheet">
<script>
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 10 || document.documentElement.scrollTop > 10) {
document.getElementById("header").style.visibility = "visible";
}
else {
document.getElementById("header").style.visibility = "hidden";
}
}
function myFunction() {
var element = document.body;
element.classList.toggle("dark-mode");
}
</script>
</head>
<body>
<div id="header">
<nav>
<div class="logo">ANIKET BAIDYA</div>
</nav>
</div>
<nav>
<ul class="menu">
<a href="index.html"><li>Home</li></a>
<a href="about.html"><li>About</li></a>
<a href="work.html"><li><span style="color: gold;">Work</span></li></a>
</ul>
<ul class="contact">
<a href="contact.html"><li>Contact</li></a>
</ul>
<div class="burger">
<button onclick="myFunction()" id="dark">
<input type="checkbox">
</button>
</div>
</nav>
<div class="third">
<span style="color:white;font-size: large;"> <h1>From E-commerce<br>platforms to virtual <br>worlds.</h1></span><br>
<p>
A trip down memory lane. To be expanded one day.<br><br>
</p>
<br>
<span style="color:white;font-size: large;"><h2> Airline Reservation Management System(Team Project)</h2></span>
<p>
Successfully created a working replica model of real time <span style="color: gold;">Airline Reservation and Management System</span>.
The Front End has been developed in <span style="color: gold;">Java </span>which has been connected to the Back End developed in <span style="color: gold;">MYSQL</span> which holds the<br>
data of Users and Airline Systems like Seats,Offers,Routes etc.
</p>
<br>
<span style="color:white;font-size: large;"><h2> Personal Artificial Intelligence System</h2></span>
<p>
Bored during the Corona Pandemic I decided to dive into the Working of famous AI systems like Alexa and Siri.
I successfully built a working <span style="color: gold;">Personal AI system</span> and its scripting is done in <span style="color: gold;">Python</span>.<br> It can do many things
like show the current weather conditions based on your current location,open Spotify to play music,Send Emails
and also surf the internet when you search for something.<br>It supports <span style="color: gold;">Voice Recognition.</span><br> It is still in development phase
and I hope to add some new and exciting features in the future.
</p>
<br>
<span style="color:white;font-size: large;"><h2>Janseva(Team Project)</h2></span>
<p>
The <span style="color: gold;">Janseva</span> is a Responsive Working Model of an<span style="color: gold;">Online Complaint Registration Portal.</span> This project has been developed
by keeping in mind the current scenarios and condition of existing Complaint Registration Systems.This has been
developed for use by any Private or Government Organisation but strategically it is more benefitial for the latter.
The Front End has been developed completely in <span style="color: gold;">Java</span> and the Back End is developed in <span style="color: gold;">MYSQL.</span>It has different categories
of complaints through which a user can choose and also has necessary features to attach evidence along with the Complaint
and fill up all necessary forms.These complaints are stored in the database which can be retrieved by the official authorities
and looked upon and do the necessary expected.
</p>
<br>
<span style="color:white;font-size: large;"><h2>Online Website for Plasma and Blood Donation(Team Project)</h2></span>
<p>
The <span style="color: gold;">Online Blood and Plasma Donation Website</span> is a website for any user who wants to donate blood or plasma can use to do the above.
It has been strategically developed keeping in mind the current importance of blood and plasma in the Corona Pandemic.
The Front End has been developed completely developed using <span style="color: gold;">HTML 5,CSS3 AND JAVASCRIPT</span> and the Back End is developed in <span style="color: gold;">PHP.</span>
Using this website the interested donors can book appointments for donating the required.It consists of various forms
whose data is stored in the database which can be retrieved and accessed by the respective Medical Authorities.
It has a perfectly working Sorting and Searching Algorithm which smartly and autonomously shows the nearest blood banks
and hospitals based on your current location and also shows navigation routes to it on a small map.
</p>
<br>
<span style="color:white;font-size: large;"><h2>Bus Reservation System(Team Project)</h2></span>
<p>
The <span style="color: gold;">Bus Reservation System</span> is a software for any user who wants to book tickets on any bus.
It has been strategically developed keeping in mind the current importance of Bus Transport System.
This software has been developed on <span style="color: gold;">C and C++ with relevant Data Structures and Algorithms.</span>It uses completely new<span style="color: gold;"> Algorithm</span> for <span style="color: gold;">Searching
and Sorting of Buses</span> available according to various factors like time,no.of seats available and Routes.The Algorithm helps to
book seats on a particular bus and also throws error if the seat has already been booked.It also stores the Seat Reservation details
for further use.<span style="color: gold;">The Algorithm</span> supports <span style="color: gold;">intermediate stops and multiple buses.</span>
</p>
</div>
<br>