Health Care Website

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 43

WEB TECHNOLOGY

PROJECT FILE on

“HEALTH CARE WEBSITE”

NAME :
ROLL NO.:

DECLARATION
I, [Your Full Name], a student of Class 12, [Stream/Subject], at [School Name],

hereby declare that all the information provided by me in the examination form and

school records is accurate and true to the best of my knowledge. I affirm that the

project work submissions are my original creations, and I have properly cited all

references wherever necessary. I assure that I have followed the guidelines set by the

school and board for completing my coursework and preparing for examinations.

Furthermore, I commit to adhering to all the rules and regulations during the

examination and in all school-related activities.

CERTIFICATE
This is to certify that [Student's Name], a student of Class 12, [Stream/Subject],

Roll No. [Roll Number], at [School Name], has completed the project titled [Project

Title] during the academic session [Year]. The project was done under my guidance

and follows the rules set by the [Board Name]. It is the student's own work, and all

sources have been properly mentioned. I wish the student the best for their future.

TABLE CONTENT
SR. NO. CONTENT
1. INTRODUCTION

(i)Aim of the project

(ii)Feature of the project

(iii)web technology

(iv)working of the web application


2. IMPLEMENTATION

3. OUTPUT

4. CHALLENGES AND LEARNINGS

5. BIBLIOGRAPHY

ACKNOWLEDGEMENT
I would like to express my heartfelt gratitude to my project guide, for their

invaluable guidance, support, and encouragement throughout the completion of

this project. Their insights and expertise were instrumental in shaping my

understanding of the subject and in guiding me through the project process. I

am also thankful to [School Name] for providing the necessary resources and a

conducive environment for learning. Special thanks to my classmates for their

collaboration and constructive feedback, which greatly enriched my project.

Additionally, I am deeply grateful to my family for their unwavering support

and encouragement, which motivated me to give my best effort. This project

would not have been possible without the combined efforts of everyone

involved. Thank you all for your contributions and support.

INTRODUCTION
ABOUT PROJECT:
The Healthcare Website is an innovative web application designed to provide users

with quick and convenient access to health-related information and services. Featuring

an intuitive and user-friendly interface, this platform allows individuals to easily

search for healthcare providers, book appointments, and explore resources such as

articles on health and wellness by inputting their preferences like location and

specialty. The application ensures accurate data entries with helpful error messages,

enhancing the overall user experience. Built with modern web technologies such as

HTML, CSS, and JavaScript, the Healthcare Website is fully responsive, offering

seamless compatibility across various devices, including desktops and mobile phones.

This project not only highlights the functionality of web development but also

showcases how engaging and interactive user experiences can be created through

thoughtful design. Whether for routine check-ups or specialized treatments, the

Healthcare Website serves as a valuable tool in the digital landscape, simplifying the

healthcare process and providing users with an efficient way to manage their health

and well-being.

AIM OF THE PROJECT


The primary aim of the Healthcare Website project is to develop a user-friendly web

application that enables individuals to efficiently access health-related information and

services based on their needs, such as searching for healthcare providers, booking

appointments, and exploring wellness resources. This project seeks to enhance the user

experience by providing real-time information about healthcare options, allowing users to

make informed decisions about their health quickly and easily. Additionally, the project

aims to demonstrate the capabilities of modern web technologies, such as HTML, CSS, and

JavaScript, in creating interactive and responsive applications. By prioritizing ease of use

and accessibility, the Healthcare Website aspires to be a valuable tool for individuals

seeking health services and information, serving both practical purposes, like managing

appointments and accessing healthcare resources, and offering educational insights into web

development and the digital transformation of healthcare services.

FEATURE OF THE PROJECT

1.User-Friendly Interface: The website will have a simple and intuitive design,

allowing users to easily navigate and search for healthcare providers, book

appointments, and access health resources.

2.Provider Listings: A section displaying a variety of healthcare providers, including

key details such as name, specialty, location, availability, and user ratings, to help

users make informed decisions.


3. Appointment Booking System: A feature that enables users to schedule appointments

with healthcare providers by selecting dates and times, along with a confirmation

process to ensure real-time availability.

4. Responsive Design: The website will be fully responsive, ensuring it works smoothly

on various devices, including desktops, tablets, and smartphones, providing a seamless

user experience.

WEB TECHNOLOGY
Web Technology refers to the tools, techniques, and methodologies used to create

and manage websites and web applications. It plays a pivotal role in enabling

communication, interaction, and services over the internet. Web technology

encompasses both client-side (front-end) and server-side (back-end)

technologies that work together to deliver seamless experiences to users.

1. Client-Side Technologies

Client-side technologies focus on how a website looks and behaves in a user's


browser. These technologies are essential for developing interactive, user-friendly
interfaces.

 HTML (HyperText Markup Language):


HTML is the fundamental language used to structure content on the web. It
defines the placement of elements such as headings, paragraphs, links, images,
and multimedia on a webpage. It forms the backbone of any website.
o Example: <h1>Welcome to My Website</h1>, <p>This is a
paragraph.</p>
 CSS (Cascading Style Sheets):
CSS is used to control the presentation and layout of the HTML structure. It
allows developers to customize the appearance of web pages by defining styles
like colors, fonts, margins, padding, and overall layout, ensuring that websites
are visually appealing and consistent across different devices.
o Example: body {background-color: lightblue; font-family: Arial;}

 JavaScript:
JavaScript is a programming language that enables interactivity on websites. It
is used to create dynamic content, such as pop-up dialogs, interactive forms,
animations, and handling user inputs in real-time without reloading the
webpage. JavaScript can also fetch and update data in the background
o Example: document.getElementById('button').addEventListener('click',
function() { alert('Button clicked!'); });

2. Server -side Technologies


Server-side technologies handle the logic and data processing behind the
scenes. They are responsible for processing user requests, interacting with
databases, and generating dynamic content.
Working of a Web Application
A web application operates based on a simple request-response cycle between the
client (browser) and the server.

1. User Request:
The user initiates a request by typing a URL into their browser or clicking a
link/button on the website. This request is sent via the internet to the web
server.
2. Web Server Processing:
The web server receives the request and performs the required processing. This
may include fetching data from a database, running scripts, or generating
dynamic content depending on what is requested.
3. Response:
The server processes the request and sends the requested webpage or data back
to the browser. If any data is required from the database (such as user login
details), the server will query the database before sending the final response.

PROJECT REQUIREMENT
1. Front-End Design:

 HTML:
o A basic HTML form that allows user input.
o The form will include:
 An input field for user data.
 A submit button to process the input.
 A section to display the output or results.
 CSS:
o Basic styling for the form to enhance visual appeal.
o Responsive design to ensure the application looks good on both mobile
and desktop devices.

2.Functionality:

 Input Validation:
o Validate that the user has entered data in the correct format and meets
any specified criteria (e.g., valid dates, numbers).
 Calculation:
o Use JavaScript to perform calculations based on the user input.
o The application should return results based on the calculations
performed.
 Display Output:
o After the user submits their input, the calculated result will be displayed
in a designated output area.

TECHNOLOGIES USED IN WEB APPLICATION


1. HTML (HyperText Markup Language)
HTML is the standard markup language for creating web pages. It provides the structure and layout of
a webpage by using various elements and tags.
Key Features of HTML:
 Structure: Defines the structure of web content through elements like headings,
paragraphs, lists, links, and images.
 Forms: Allows users to input data using forms, which are essential for interactive
applications.
 Semantic Elements: Supports semantic HTML, which enhances accessibility and
SEO by providing meaning to the content.
Example Elements:
 <input>: Used for user input fields.
 <button>: Represents a clickable button.
 <div>: A generic container for grouping content.

2. CSS (Cascading Style Sheets)


CSS is a stylesheet language used for describing the presentation of a document written in HTML. It
controls the layout, colors, fonts, and overall visual aesthetics of a webpage.
Key Features of CSS:
 Styling: Defines the look and feel of web pages, allowing customization of elements,
backgrounds, and layouts.
 Responsive Design: Uses media queries to ensure webpages look good on various
devices and screen sizes.
 Animations and Transitions: Enables dynamic effects to enhance user experience.
Example Concepts:
 Selectors: Target specific HTML elements for styling.
 Box Model: Understanding how margins, borders, and padding affect layout.
 Flexbox/Grid: Modern layout techniques for responsive design.

IMPLEMENTATION
INDEX.HTML
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title><link rel="preload" as="image"
imagesrcset="https://developergtm.in/wp-content/uploads/2024/03/20240302_220747
.jpg" imagesizes="(max-width: 749px) 100vw, 749px" /><link rel="preload"
as="font" href="https://developergtm.in/wp-content/themes/smart-mag/css/icons/
fonts/ts-icons.woff2?v3.1" type="font/woff2" crossorigin="anonymous" />
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-
DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4
TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
</head>

<body>

<nav class="navbar">
<div class="logo">
<p>DeveloperGTM</p>
</div>

<div class="item">
<a class="home-btn" href="#">Home</a>
<a href="#">Service</a>
<a href="#">Doctor</a>
<a href="#">Review</a>
</div>
<div class="btn">
<input type="button" value="Let's Talk">
</div>
</nav>

<section class="hero-sec">
<div class="main-sec">
<div class="left">
<p class="txt1">Love You Health</p>
<p class="txt2">Trust You Health to The Best Specialist</p>
<p class="txt3">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolor
nobis possimus, qui reiciendis
ducimus tempora.</p>
<div class="btn">
<input class="btn1" type="button" value="Get In Touch">
<div class="more">
<input class="btn2" type="button" value="See More">
<i class="fa-solid fa-arrow-right"></i>
</div>
</div>
</div>

<div class="right">
<img decoding="async" src="hero-img.avif" alt="">
</div>
</div>
</section>

<section class="plat-sec">
<div class="main-box">
<div class="box">
<p class="txt1">180+</p>
<p class="txt2">Years experience</p>
</div>

<div class="box">
<p class="txt1">10+</p>
<p class="txt2">Expert Doctor</p>
</div>

<div class="box">
<p class="txt1">15k</p>
<p class="txt2">Expert Doctor</p>
</div>

<div class="box">
<p class="txt1">350+</p>
<p class="txt2">Expert Doctor</p>
</div>
</div>
</section>

<section class="health-sec">
<div class="txt">
<p class="txt1">3 QUICK STEPS</p>
<p class="txt2">Claime You Better Health</p>
</div>

<div class="main-box">
<div class="box">
<i class="fa-solid fa-users"></i>
<p class="txt1">Choose Doctor</p>
<p class="txt2">Lorem ipsum dolor, sit amet consectetur adipisicing elit.
Mollitia, molestias.</p>
</div>

<div class="box">
<i class="fa-solid fa-user-check"></i>
<p class="txt1">Follow The Insights</p>
<p class="txt2">Lorem ipsum dolor, sit amet consectetur adipisicing elit.
Mollitia, molestias.</p>
</div>

<div class="box">
<i class="fa-solid fa-house-medical"></i>
<p class="txt1">Become Healthier</p>
<p class="txt2">Lorem ipsum dolor, sit amet consectetur adipisicing elit.
Mollitia, molestias.</p>
</div>
</div>

</section>

<section class="hero-sec2">
<div class="main-sec">
<div class="left">
<img decoding="async"
src="https://images.unsplash.com/photo-1612349317150-e413f6a5b16d?
w=500&auto=format&fit=crop&q=60&ixlib=rb-
4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8ZG9jdG9yfGVufDB8fDB8fHw
w"
alt="">
</div>
<div class="right">
<p class="txt1">Love You Health</p>
<p class="txt2">Why People Choose HealthCare</p>
<p class="txt3">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolor
nobis possimus, qui reiciendis
ducimus tempora.</p>
<div class="btn">
<input class="btn1" type="button" value="Read More">
</div>
</div>
</div>
</section>

<section class="hero-sec">
<div class="main-sec">
<div class="left">
<p class="txt1">Love You Health</p>
<p class="txt2">We Always Provide Best Service</p>
<p class="txt3">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolor
nobis possimus, qui reiciendis
ducimus tempora.</p>
<div class="btn">
<input class="btn1" type="button" value="Read More">
</div>
</div>

<div class="right">
<img decoding="async" src="hero-img.avif" alt="">
</div>
</div>
</section>
<section class="team-sec">
<div class="txt">
<p class="txt1">Our Specialist Doctor Team</p>
<p class="txt2">Lorem ipsum dolor sit amet consectetur adipisicing elit.
Aspernatur praesentium accusantium
mollitia, non eum possimus?</p>
</div>

<div class="main-box">
<div class="box">
<img decoding="async" src="img1.jpg" alt="">
<p class="work">Dentist</p>
<p class="name">Dr.Name Example</p>
<div class="rat">
<p>Example Hospital</p>
<div class="star">
<i class="fa-solid fa-star"> 5.0</i>
<p>(1k+)</p>
</div>
</div>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Expedita,
vitae?</p>
<button>view profile</button>
</div>

<div class="box">
<img decoding="async" src="img2.jpg" alt="">
<p class="work">Dentist</p>
<p class="name">Dr.Name Example</p>
<div class="rat">
<p>Example Hospital</p>
<div class="star">
<i class="fa-solid fa-star"> 5.0</i>
<p>(1k+)</p>
</div>
</div>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Expedita,
vitae?</p>
<button>view profile</button>
</div>

<div class="box">
<img decoding="async" src="img3.jpg" alt="">
<p class="work">Dentist</p>
<p class="name">Dr.Name Example</p>
<div class="rat">
<p>Example Hospital</p>
<div class="star">
<i class="fa-solid fa-star"> 5.0</i>
<p>(1k+)</p>
</div>
</div>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Expedita,
vitae?</p>
<button>view profile</button>
</div>
</div>
</section>

<section class="cnt-sec">
<p class="txt1">It's Time To Change Your Life To Day</p>
<p class="txt2">Lorem ipsum dolor, sit amet consectetur adipisicing elit. In unde
exercitationem corporis et tempora deserunt
quia corrupti porro eveniet totam?</p>
<div class="btn">
<button class="btn1">Contact Us</button>
<button class="btn2">Make an Appointment</button>
</div>
</section>

<footer class="foot-sec">
<div class="main-box">
<div class="box1">
<h1>DeveloperGTM</h1>
<div class="social">
<i class="fa-brands fa-square-instagram"></i>
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-youtube"></i>
</div>
</div>

<div class="box2">
<h1>Quick Link</h1>
<div class="btn">
<a class="home-btn" href="/">Home</a>
<a href="/">Product</a>
<a href="/">Privacy Policy</a>
<a href="/">Contact Us</a>
</div>
</div>

<div class="box2">
<h1>Quick Link</h1>
<div class="btn">
<a class="home-btn" href="/">Home</a>
<a href="/">Product</a>
<a href="/">Privacy Policy</a>
<a href="/">Contact Us</a>
</div>
</div>

<div class="box4">
<h1>Contact Us</h1>
<div class="add">
<p><i style="color: rgb(0, 174, 255)" class="fa-solid fa-phone"></i>
Demo24@gmail.com</p>
<p><i style="color: rgb(0, 174, 255)" class="fa-solid fa-envelope"></i> +9999-
9999-99</p>
</div>
</div>
</div>
<div class="copy">
<p>Copyright © 2024 Design By <span>DeveloperGTM</span></p>
</div>
</footer>

</body>
</html>

STYLE.CSS

*{
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
}

.navbar {
display: flex;
justify-content: space-between;
align-items: center;
height: 60px;
background-color: white;
padding: 10px 50px;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.navbar .logo p {
font-size: 30px;
color: rgb(0, 174, 255);
font-weight: bold;
padding-left: 15px;
}

.navbar .item {
display: flex;
column-gap: 20px;
}

.navbar .item .home-btn {


color: rgb(0, 174, 255);
}

.navbar .item a {
text-decoration: none;
color: black;
cursor: pointer;
}

.navbar .btn input {


padding: 10px 30px;
cursor: pointer;
background-color: rgb(0, 174, 255);
border: none;
border-radius: 30px;
transition: all 0.4s ease-in-out;
}

.navbar .btn input:hover {


box-shadow: rgb(0, 174, 255) 0px 5px 15px;
}

.hero-sec {
display: flex;
align-items: center;
justify-content: center;
padding: 10px 50px;
}

.hero-sec .main-sec {
display: flex;
align-items: center;
margin-top: 30px;
margin-bottom: 30px;
justify-content: center;
}

.hero-sec .main-sec .left {


display: flex;
flex-direction: column;
padding: 20px;
row-gap: 20px;
}

.hero-sec .main-sec .left .txt1 {


color: rgb(0, 174, 255);
}

.hero-sec .main-sec .left .txt2 {


font-size: 55px;
font-weight: 700;
}

.hero-sec .main-sec .left .txt3 {


color: darkgray;
}

.hero-sec .main-sec .left .btn {


display: flex;
column-gap: 20px;
}

.hero-sec .main-sec .left .btn .btn1 {


padding: 10px 30px;
cursor: pointer;
background-color: rgb(0, 174, 255);
border: none;
border-radius: 30px;
transition: all 0.4s ease-in-out;
}

.hero-sec .main-sec .left .btn .btn2 {


padding: 10px 30px;
border: none;
background: white;
font-weight: bold;
cursor: pointer;
border: none;
}

.hero-sec .main-sec .left .btn .btn1:hover {


box-shadow: rgb(0, 174, 255) 0px 5px 15px;
}

.hero-sec .main-sec .left .btn .more {


display: flex;
justify-content: center;
align-items: center;
}

.hero-sec .main-sec .left .btn .more i {


position: absolute;
margin-left: 90px;
}

.hero-sec .main-sec .right img {


border-radius: 10px;
}

.plat-sec {
background-image: linear-gradient(140deg, #00223e, #0b1a18);
height: 200px;
padding: 10px 50px;
display: flex;
justify-content: center;
align-items: center;
}

.plat-sec .main-box {
display: flex;
justify-content: center;
column-gap: 50px;
}

.plat-sec .main-box .box {


color: black;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
row-gap: 10px;
background: white;
padding: 20px;
height: 100px;
width: 158px;
border-radius: 10px;
transition: all 0.4s ease-in-out;
}
.plat-sec .main-box .box:hover {
margin-top: -20px;
cursor: pointer;
}

.plat-sec .main-box .box .txt1 {


font-size: 40px;
font-weight: 600;
}

.health-sec {
height: auto;
margin-top: 30px;
margin-bottom: 30px;
padding: 10px 40px;
}

.health-sec .txt {
display: flex;
flex-direction: column;
align-items: center;
row-gap: 10px;
}

.health-sec .txt .txt1 {


color: rgb(0, 174, 255);
}

.health-sec .txt .txt2 {


font-weight: 700;
font-size: 3rem;
}

.health-sec .main-box .box {


width: 350px;
height: 200px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
row-gap: 15px;
}

.health-sec .main-box {
display: flex;
justify-content: center;
column-gap: 60px;
margin-top: 30px;
}

.health-sec .main-box .box i {


background: rgb(0, 174, 255);
color: rgb(237 237 237);
font-size: 3rem;
border-radius: 50%;
width: 100px;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}

.health-sec .main-box .box .txt1 {


font-size: 30px;
font-weight: 600;
}

.health-sec .main-box .box .txt2 {


color: darkgray;
}

.hero-sec2 {
display: flex;
align-items: center;
justify-content: center;
padding: 10px 50px;
}

.hero-sec2 .main-sec {
display: flex;
align-items: center;
margin-top: 30px;
margin-bottom: 30px;
justify-content: center;
}

.hero-sec2 .main-sec .right {


display: flex;
flex-direction: column;
row-gap: 20px;
padding: 20px;
}

.hero-sec2 .main-sec .right .txt1 {


color: rgb(0, 174, 255);
}

.hero-sec2 .main-sec .right .txt2 {


font-size: 55px;
font-weight: 700;
}

.hero-sec2 .main-sec .right .txt3 {


color: darkgray;
}

.hero-sec2 .main-sec .right .btn {


display: flex;
column-gap: 20px;
}

.hero-sec2 .main-sec .right .btn .btn1 {


padding: 10px 30px;
cursor: pointer;
background-color: rgb(0, 174, 255);
border: none;
border-radius: 30px;
transition: all 0.4s ease-in-out;
}
.hero-sec2 .main-sec .right .btn .btn2 {
padding: 10px 30px;
border: none;
background: white;
font-weight: bold;
cursor: pointer;
border: none;
}

.hero-sec2 .main-sec .right .btn .btn1:hover {


box-shadow: rgb(0, 174, 255) 0px 5px 15px;
}

.hero-sec2 .main-sec .right .btn .more {


display: flex;
justify-content: center;
align-items: center;
}

.hero-sec2 .main-sec .right .btn .more i {


position: absolute;
margin-left: 90px;
}

.hero-sec2 .main-sec .left img {


border-radius: 10px;
height: 417px;
width: 626px;
}

.team-sec {
height: auto;
padding: 10px 40px;
}

.team-sec .txt {
display: flex;
flex-direction: column;
align-items: center;
row-gap: 10px;
}

.team-sec .txt .txt1 {


font-weight: 700;
font-size: 3rem;
}

.team-sec .txt .txt2 {


color: darkgray;
}

.team-sec .main-box {
display: flex;
justify-content: center;
column-gap: 20px;
margin-top: 30px;
}

.team-sec .main-box .box {


background: white;
width: 375px;
display: flex;
flex-direction: column;
padding: 15px;
border-radius: 10px;
row-gap: 15px;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.team-sec .main-box .box .work{


position: absolute;
margin-top: 15.2%;
background-color: white;
width: 165px;
height: 45px;
display: flex;
align-items: center;
border-top-right-radius: 70px;
justify-content: center;
background-color: rgb(0, 174, 255);
font-size: 1.8rem;
}

.team-sec .main-box .box .name{


font-size: 2rem;
}

.team-sec .main-box .box .rat {


display: flex;
column-gap: 157px;
}

.team-sec .main-box .box .rat .star{


display: flex;
column-gap: 10px;
}

.team-sec .main-box .box .rat i{


color: #ff4700;
}

.team-sec .main-box .box button {


padding: 10px 30px;
cursor: pointer;
background-color: rgb(0, 174, 255);
border: none;
border-radius: 30px;
transition: all 0.4s ease-in-out;
width: fit-content;
}

.team-sec .main-box .box button:hover {


box-shadow: rgb(0, 174, 255) 0px 5px 15px;
}

.cnt-sec{
height: 300px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
row-gap: 20px;
}
.cnt-sec .txt1{
font-weight: 700;
font-size: 3rem;
}

.cnt-sec .btn{
column-gap: 20px;
display: flex;
}

.cnt-sec .btn .btn1{


padding: 15px 35px;
border: none;
border-radius: 30px;
transition: all 0.4s ease-in-out;
cursor: pointer;
border: 2px solid rgb(0, 174, 255);
}

.cnt-sec .btn .btn2{


padding: 15px 35px;
border: none;
border-radius: 30px;
cursor: pointer;
transition: all 0.4s ease-in-out;
background-color: rgb(0, 174, 255);
}

.cnt-sec .btn .btn1:hover{


box-shadow: rgb(0, 174, 255) 0px 5px 15px;
}
.cnt-sec .btn .btn2:hover{
box-shadow: rgb(0, 174, 255) 0px 5px 15px;
}

.foot-sec {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 30px;
height: 300px;
background-color: black;
}

.foot-sec .main-box {
display: flex;
column-gap: 130px;
align-items: baseline;
justify-content: center;
}

.foot-sec .main-box .box1 h1 {


color: white;
}

.foot-sec .main-box .box1 .social {


display: flex;
column-gap: 20px;
}
.foot-sec .main-box .box1 i {
color: black;
font-size: 20px;
background: rgb(0, 174, 255);
cursor: pointer;
padding: 10px;
border-radius: 30px;
}

.foot-sec .main-box .box2 h1 {


color: white;
}

.foot-sec .main-box .box2 i {


color: white;
}

.foot-sec .main-box .box1 {


display: flex;
flex-direction: column;
row-gap: 24px;
justify-content: center;
align-items: center;
}

.foot-sec .main-box .box2 .btn {


display: flex;
flex-direction: column;
row-gap: 15px;
padding-top: 20px;
}
.foot-sec .main-box .box2 .btn a {
text-decoration: none;
color: rgb(141, 137, 137);
}

.foot-sec .main-box .box4 {


display: flex;
flex-direction: column;
row-gap: 20px;
}

.foot-sec .main-box .box4 .add {


display: flex;
flex-direction: column;
row-gap: 20px;
}

.foot-sec .main-box .box4 h1 {


color: white;
}

.foot-sec .main-box .box4 .add p {


color: rgb(141, 137, 137);
}

.foot-sec .copy {
margin-top: 57px;
/* background: red; */
width: 100%;
padding: 20px;
justify-content: center;
align-items: center;
display: flex;
margin-bottom: -30px;
}

.foot-sec .copy p{
color: white;
}

.foot-sec .copy p span{


color: rgb(0, 174, 255);
}

OUTPUT
CHALLENGES AND LEARNINIG
Challenges:
1.Designing a User-Friendly Interface: Creating an intuitive and accessible interface
that accommodates a diverse user base can be challenging.

2.Managing Provider Listings: Organizing a large amount of data regarding healthcare


providers while ensuring easy navigation and search functionality.
3.Providing Accurate Health Information: Ensuring that all health resources and
articles are accurate, reliable, and up-to-date.

4.Handling User Feedback: Collecting and addressing user feedback effectively to


improve the website can be time-consuming.

Learnings:
1. Enhanced Design Skills: Improved ability to create user-centered designs that enhance
usability and accessibility for diverse users.

2. Proficiency in Web Technologies: Gained a deeper understanding of HTML, CSS, and


JavaScript, particularly in creating responsive and interactive web applications.

3. Understanding of Healthcare Systems: Learned about the essential components of


healthcare websites, including provider listings, appointment systems, and health
resources.

BIBILIOGRAPHY

1. https://www.w3schools.com
2. https://www.geeksforgeeks.org/web-
development/
3.CBSE Class 12 Computer Science

You might also like