In Plant Training: A Report On
In Plant Training: A Report On
In Plant Training: A Report On
In Plant Training
Submitted By
1
Shri Gulabrao Deokar
Polytechnic,
Jalgaon
CERTIFICATE
i. Student performance and conduct was Very Good ii. Student was found to be good
at quick learning, adapting & implementing. iii. Improvement of the student is desired
in advanced programming /logic iv. Student willingness to learn new things Very Good
v. Any other points
Yogita worked on multiple projects with full dedication and took each project as a
challenge with never say no attitude. She was quick to learn technology, code,
adaptto the standards and apply her knowledge to implement the solution.
She is found to be calm with clear communication, positive attitude and team
player.She is ready to ask for help when needed as well as guide someone where
she has an expertise. Yogita is an asset with a bright future and we wish her best
luck for the future.
3
In this internship report I will describe my experiences during my internship period .The
internship report contains an overview of the internship company and the activities, tasks and projects
that I have worked on during my internship. Writing this report, I also will describe and reflect my
learning objects and personal goals that I have set during my internship period. In compiling this report I
have intended to provide a synthesis of theoretical approaches and methods of implementing them in the
world of business. I have tried to discover the relationship between theoretical and practical type of
knowledge. I have tried to bridge the gap between theoretical assumption sand practical necessities.
During the entire course of our academic study, we remain engaged in theoretical learning where
the primary objective is academic success. A concise knowledge of the modern business arena can only
be attained through the pragmatic implementation of hypothetical ideas, which we learn from our
academic activities. With these objectives, I have made all possible efforts and the necessary
investigations to submit this report in an enlightened for min a very short time. I have tried my level best
to eliminate errors from the report.
As I had to complete my internship within a short period of time so the study admits its
limitations. The report first shall give an overview of the company in which we have worked, tasks
completed during the period of internship with technical details. Then the results obtained shall be
discussed and analyzed. I have tried my best to keep report simple yet technically correct. I hope I
succeed in my attempt.
4
ACKNOWLEDGEMENT
The satisfaction that companies that the successful completion of any task would be incomplete
without the mention of people whose ceaseless co-operation made it possible, whose constant guidance
and encouragement crown all efforts with success.
First, I would like to thank Mr. Prasad Neve, Co-founder and CEO of Softanaic Solutions for
giving me the opportunity to do an internship with the organization. I also would like to thank all the
people that worked along with me at Softanic Solutions with their patience and openness they created an
enjoyable working environment.
It is indeed with a great sense of pleasure and immense sense of gratitude that I acknowledge the
help of these individuals.
I would like to thank our Principal M.P Patil sir, for creating the required academic
environment which made our task appreciable.
I would like to thank my Head of the Department Prof. Minaxi Yeole, for her helping nature and
Constant Motivation throughout my training period.
5
TABLE OF CONTENTS
TITLE CONTENTS
I Introduction to Industry
IV Conclusion
V Refrences
6
ABSTRACT
In my internship period at Web Planet as a Web Development Intern, I learnt and explored many
things. I learnt about the Html , CSS , Bootstrap , core Javascript. I have learnt the asynchronous nature
of javascript. I also got an opportunity to take interviews for hiring candidates in the company. It was an
over whelming and very good experience. I got to know what all abilities and qualities an interviewer
looks in one candidate. Overall as a person my professional communication skills improved a lot as I
communicated with my colleagues and also candidates whom I used to call and check whether his/her
assignment was correct or not. It was an amazing experience to work in that company where the work
culture and all the people were co- operative and supportive and very helpful.
7
8
9
10
Our Sevices
Designing: We design your website in such manner, which will improve your
online business and make famous.
Testing: We Test application with the intent of finding the bugs and provide
information about the quality of applications.
SEO: SEO (Search Engine Optimization) is help to know first about your
business and get clients Inpresence SEO has first advantage
Divisions
1. Web Designing & Web Development
3. SEO
11
Organization Objectives
Strong skill sets
We have a team of highly qualified leaders including Masters in computer
application, databaseexperts, subject matter experts and core developers.
12
Web Back Ends
If you are seeking a backend solution for your project - you've found the right
people for the job. We can revitalize your web frontend by handling all the
calculations, business logic, database interactions, and performance. Our
system analysts will make sure we are aligned with your vision
We are ever ready to take on challenges head on and grow with each one of
them. From increasing team size in a short period of time to acquiring new
skills we have always been ready with our next step.
13
14
Project Report
Source Code
Index.html
<!DOCTYPE html>
<html>
<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 rel="stylesheet" href="style.css">
<title>Title</title>
</head>
<body>
<h1>Calculator</h1>
<div class="container">
<div class="calculator dark ">
<div class="theme-toggler active">
<i class="toggler-icon"></i>
</div>
<div class="display-screen">
<div id="display"></div>
</div>
<div class="buttons">
<table>
<tr>
<td><button class="btn-operator"
id="clear">C</button></td>
15
<td><button class="btn-operator"
id="/">÷</button></td>
<td><button class="btn-operator"
id="*">×</button></td>
<td><button class="btn-operator"
id="backspace">⌫</button></td>
</tr>
<tr>
<td><button class="btn-number"
id="7">7</button></td>
<td><button class="btn-number"
id="8">8</button></td>
<td><button class="btn-number"
id="9">9</button></td>
<td><button class="btn-operator"
id="-">-</button></td>
</tr>
<tr>
<td><button class="btn-number"
id="4">4</button></td>
<td><button class="btn-number"
id="5">5</button></td>
<td><button class="btn-number"
id="6">6</button></td>
<td><button class="btn-operator"
id="+">+</button></td>
</tr>
<tr>
<td><button class="btn-number"
id="1">1</button></td>
<td><button class="btn-number"
id="2">2</button></td>
16
<td><button class="btn-number"
id="3">3</button></td>
<td rowspan="2"><button
class="btn-equal" id="equal">=</button></td>
</tr>
<tr>
<td><button class="btn-operator"
id="(">(</button></td>
<td><button class="btn-number"
id="0">0</button></td>
<td><button class="btn-operator"
id=")">)</button></td>
</tr>
</table>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>
17
Script.js
buttons.forEach((item) => {
item.onclick = () => {
if (item.id == "clear") {
display.innerText = "";
} else if (item.id == "backspace") {
let string = display.innerText.toString();
display.innerText = string.substr(0, string.length
- 1);
} else if (display.innerText != "" && item.id ==
"equal") {
display.innerText = eval(display.innerText);
} else if (display.innerText == "" && item.id ==
"equal") {
display.innerText = "Empty!";
setTimeout(() => (display.innerText = ""), 2000);
} else {
display.innerText += item.id;
}
};
});
18
let isDark = true;
themeToggleBtn.onclick = () => {
calculator.classList.toggle("dark");
themeToggleBtn.classList.toggle("active");
isDark = !isDark;
};
Style.css
<html>
{
padding: 0;
margin: 0;
box-sizing: border-box;
outline: 0;
transition: all 0.5s ease;
} body {
font-family: sans-serif;
} a {
text-decoration: none;
color: #fff;
} body {
background-image: linear-gradient( to bottom right,
rgba(0,0,255,1.0),rgba(0,0,0));
} .container {
height: 100vh;
width: 100vw;
display: grid;
place-items: center;
}
19
.calculator {
position: relative;
height: auto;
width: auto;
padding: 35px;
border-radius: 50px;
box-shadow: 0 0 30px #000;
} #display {
margin: 0 10px;
height: 100px;
width: auto;
max-width: 270px;
display: flex;
align-items: flex-end;
justify-content: flex-end;
font-size: 30px;
margin-bottom: 20px;
overflow-x: scroll;
} #display::-webkit-scrollbar {
display: block;
height: 3px;
} button {
height: 60px;
width: 60px;
border: 0;
border-radius: 30px;
margin: 2px;
font-size: 20px;
cursor: pointer;
transition: all 200ms ease;
} button:hover {
transform: scale(1.1);
}
20
button#equal {
height: 120px;
}
/* dark theme */
.calculator.dark {
background-color:darkgray;
}
.calculator.dark #display {
color: black;
}
.calculator.dark button#clear {
background-color: #2d191e;
color: white;
}
.calculator.dark button.btn-number {
background-color:
#1b2f38; color:
#f8fafb;
}
.calculator.dark button.btn-operator {
background-
color: #2e1f39;
color:white;
}
.calculator.dark button.btn-equal {
background-color: #223897;
color: #ffffff;
}
21
Output
22
Conclusion
23
One thing I realised in this internship period was that it is not the language that
affect the communication or your own attitude, it's the confident that does the
work either make it good or worse. If you have confidence own yourself then
you will not hesitate to talk in eitherHindi. English or any language you are
familiar with. This Intership gave me very good confidence to believe in
myself and my skills.
Refrences
1.HTML: https://www.w3schools.com/html
2.CSS: https://www.javapoint.com/css-tutorail
3.JAVASCRIPT: https://www.w3schools.com/is
4.BOOTSTRAP: https://www.w3schools.com/html
24