INTERNSHIP REPORT VAISHNAVI HADAVE

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 12

JSPM UNIVERSITY PUNE

Inspiring Innovation. Transforming Talent.


Recognized by the UGC u/s 2 (f) of UGC Act 1956 and enacted by the State
Government of Maharashtra - JSPM University Act, 2022
(Mah. IV of 2023)

FACULTY OF SCIENCE AND TECHNAOLOGY


SCHOOL OF COMPUTATIONAL SCIENCES
COMPUTER SCINECE ENGINEERING

INTERNSHIP REPORT
ON

WEB DEVLOPMENT

AT

VIBRANT MINDS

• NAME:-VAISHNAVI VIKAS HADAVE


• CLASS:- FY B.TECH (CSE)
• DIV:-C
• ROLL NO:-16
2023-2024

Objectives and Program Outcomes of the


internship

Objectives
1. Develop the ability to analyse complex problems, evaluate potential solutions and
implement effective strategies to provide solutions to the given problem.
2. Achieve mastery in the use of current technologies and methodologies relevant to
the professional field.
3. Enhance written and oral communication skills, ensuring clarity and effectiveness in
professional interactions.
4. Inculcate leadership qualities and the ability to work collaboratively within diverse
teams.
5. Understand and apply ethical principles and professional standards in various
situations.
6. Foster a commitment to continuous learning and professional development in a
rapidly changing global environment.

Program Outcomes

1. Demonstrate proficiency in the core knowledge and skills of the profession.


2. Apply critical thinking and analytical skills to solve real-world problems.
3. Exhibit strong communication skills, both written and verbal, suitable for
professional contexts.
4. Show capability in leading teams and collaborating effectively with others.
5. Apply ethical reasoning and adhere to professional standards in decision-making.
6. Plan, execute and oversee projects effectively, demonstrating organizational and
time-management skills.
DECLARATION BY STUDENT

I hereby declare that the content of this summer internship report is my original work

and has not been submitted for any other academic assessment. I have duly

acknowledged all sources of information, including words, data, arguments, and ideas.

This report adheres to the guidelines and standards of the university.

NAME:-VAISHNAVI VIKAS HADAVE


CLASS:- FY B.TECH /CSE
DIV:-C/16
FACULTY:- SCIENCE AND TECHNAOLOGY
SCHOOL OF COMPUTATIONAL SCIENCES

Student Declaration
JSPM UNIVERSITY, PUNE
(Recognized by the UGC u/s 2 (f) of UGC Act 1956 and enacted by the State Government of
Maharashtra - JSPM University Act, 2022 (Mah. IV of 2023))

CERTIFICATE

This is to certify that Miss VAISHNAVI VIKAS HADAVE

has carried out her internship on WEB DEVLOPMENT at VIBRANT MINDS

in partial fulfilment of the requirement of the B.TECH CSE , in FACULTY OF

SCIENCE AND TECHNAOLOGY SCHOOL OF COMPUTATIONAL SCIENCES

during Sem _1 & 2_of the Academic Year 2023-2024.

Date:10/JULY/2024

Place: PUNE

A.G SIR DR.JU.MEER


( GFM ) Internship Co-ordinator
( Offline)

Degree Name : B .Tech


School Name : School of Computational SCIENCE
Faculty Name : Faculty of Science and Technology
Contents
Sr. Particulars Page
No No.
6
1. Introduction

7
2. TASK

8
3. METHOD

8
4. Module I(HTML)

9
5. Module II(CSS)
10
6. Results

10
7. Conclusion
• Abstract :- During my internship at vibrant minds I gained practical experience in
web development. Over the course of four weeks, I learned essential technologies
such as HTML, CSS, JavaScript. The program provided valuable insights into real-
world web development projects, and I am grateful to the instructors and mentors
who contributed to my growth.

• Purpose:- Web development internships serve as valuable opportunities for


aspiring web developers to gain hands-on experience in the field. Here are
some key points about web development internships:-

1. Practical Experience
2. Latest Technologies
3. Networking
4. Portfolio Building

INTRODUCTION:-

❖ In today's digital age, web development stands as a cornerstone of


technological advancement and business growth. This internship report
provides a comprehensive overview of the practical experiences gained
during a web development internship. The report encapsulates the
learning journey, challenges faced, and achievements made throughout
the internship period.
❖ Web development encompasses a wide array of skills and disciplines
required to produce and maintain websites. From frontend development
focusing on user interface and experience to backend development
handling server-side operations and databases, every aspect plays a
crucial role in crafting functional and visually appealing web solutions.
❖ During the internship, emphasis was placed on understanding the latest
web technologies, frameworks, and methodologies. Practical hands-on
experience was gained in coding, debugging, and optimizing web
applications to meet modern standards of responsiveness, accessibility,
and security.
. Acknowledgments:-

I would like to express my heartfelt gratitude to all those who have contributed
to the successful completion of this internship report on web development.

First and foremost, I am deeply thankful to my internship supervisor, whose


guidance, support, and insightful feedback were invaluable throughout this
internship. She provided me with the opportunity to work on diverse projects
and expand my skills in web development.

I am also thankful to the entire team at vibrant minds, especially for their
cooperation and assistance during my internship. Their willingness to share
their knowledge and expertise significantly enhanced my learning experience.

Furthermore, I extend my appreciation to jspm university for facilitating this


internship program and providing me with the platform to apply my academic
knowledge in a practical setting.

Last but not least, I am grateful to my family and friends for their unwavering
support and encouragement throughout this journey.

Thank you all for believing in me and helping me grow both personally and
professionally.

Vaishnavi vikas hadave


10/July/2024
Tasks:- CREATE A WEB DEVLPOMENT PROJECT USING HTML AND CSS

Methods:-

HTML :-
<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume Upload</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Upload Your Resume</h1>
<form action="#" method="POST" enctype="multipart/form-data">
<label f
`or="name">Name:</label>
<input type="text" id="name" name="name" required>

<label for="email">Email:</label>
<input type="email" id="email" name="email" required>

<label for="resume">Resume:</label>
<input type="file" id="resume" name="resume"
accept=".pdf,.doc,.docx" required>

<button type="submit">Submit</button>

</form>
</div>
</body>
</html>
CSS:-
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}

.container {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 300px;
}

h1 {
text-align: center;
color: #333;
}

form {
display: flex;
flex-direction: column;
}

label {
margin-top: 10px;
color: #555;
}

input[type="text"],
input[type="email"],
input[type="file"] {
padding: 10px;
margin-top: 5px;
border: 1px solid #ccc;
border-radius: 5px;
}

button {
margin-top: 20px;
padding: 10px;
border: none;
border-radius: 5px;
background-color: #5cb85c;
color: #fff;
cursor: pointer;
transition: background-color 0.3s ease;
}

button:hover {
background-color: #4cae4c;
Results:-

Conclusion:- web development internships provide practical experience, exposure to


cutting-edge technologies, networking opportunities, and a chance to build an impressive
portfolio.

You might also like