SlideShare a Scribd company logo
1 of 21
Himachal Pradesh Takniki Shiksha Board,Dharamshala.
INDUSTRIAL TRAINING REPORT
Four weeks Industrial Training
At
EXCELLENCE TECHNOLOGY MOHALI
(From 5th
AUGUST 2022 to 31
AUGUST 2022)
SUBMITTED BY
Kanika sharma
Roll No :- 200710207011
BRANCH IT
5TH
SEMESTER
GOVT POLYTECHNIC HAMIRPUR
ACKNOWLEDGEMENT
In this opportunity to present my vote of thanks to all those guideposts who
really acted as lightning pillars to enlighten our way throughout this project that
has led to successful and satisfactory completion of this study.
I am really grateful to Mrs. Anjali Sharma and Mr. Lalit
Thakur for their active support, warm-hearted guidance, for his encouraging
support and providing a meticulous platform to learn.
Lastly, I am thankful to all, particularly my team members, who
have been instrumental in creating a proper, healthy & conductive environment
for me but without their help, it would have been extremely difficult for me to
prepare the project in a time bound framework.
In this opportunity to present my vote of thanks to all
those guideposts who really acted as lightning pillars to enlighten
our way throughout this project that has led to successful and
satisfactory completion of this study.
I am really grateful to Mrs. Anjali Sharma and Mr.
Lalit Thakur for their active support, whole-hearted guidance,
sincere cooperation for giving us a precious time involving a
involvement during the course also giving us a precious attention
Lastly, I am thankful to all, particularly my team
members, who have been instrumental in creating a proper, healthy
& conductive environment for me but without their help, it would
have been extremely difficult for me to prepare the project in a time
bound framework.
~Submitted by Kanika & Saksham
.Introduction about the Company .
Excellence Technology is one of the top reputed ISO
9001:2015 Certified Software Development Company in
Chandigarh and Mohali. We develop mobile applications, Games,
antivirus and websites. We provide Best industrial training in
Chandigarh and Mohali.
Excellence Technology Pvt. Ltd. Excellence Technology is a
complete IT solutions providing company based in Mohali.
Excellence technology was created to achieve the goal of providing
its clients state-of-art web development services comparable with
the best in the world.
The services provided by Excellence technology Pvt. Ltd.
Are:-
✔ Web Development
✔
.INTRODUCTION.
Name : Kanika sharma
Institute Name :
Excellence Technology
Branch Mohali [Punjab]
Project Title : Web Development
Project
Category
: HTML,CSS,JavaScript
Trainer Name Mr Lalit Thakur
Web Development: It is the work involved in developing a website
for the Internet or an intranet. Web development can range from
developing a simple single static page of plain text to complex web
applications, electronic businesses, and social network services.
Web development is the building and maintenance of websites.
Types of Web Development :
.ThreetypesofDeveloper’s.
Front-End Web Development.
 Back-End Web Development.
Full-stack Web Development.
.Overviews of these Developments.
---------------------------------------
Software that are used by the Developers
Tool Name Programming Languages Operating Systems Best Features Cost Written In
Visual Studio
Code
Supports many languages like
C++, Java, TypeScript, JSON
and many more.
Windows,Linux, Mac
OS
Auto-completion
Debugging with
breakpoints.
Free TypeScript
JavaScript
CSS
Sublime Text Supports many programming
languages.
Windows,Linux, Mac
OS
Provides instant
switching between
projects.
Cross platform
support.
$ 80 C++ &
Python
…...Working of Web development Programmers……
..Front-End Web Development..
Front-end web development is known as client-side web development. It is a
procedure of designing the user interface of the website with front-end technologies
like HTML, CSS, and JavaScript.
The aim of developing the front end of the website is to allow website visitors to read
the web content effortlessly. To motivate you to build a clean and beautiful website
interfaces.
Programming languages under front-end:
Technologies Explanation
HTML  Based on research by Statista, the HTML/CSS and JavaScript are the most
commonly used languages.
 Web designers use HTML to design the structure and layout of the website.
 Design highly interactive pages.
 Most of the static pages are designed using HTML.

 The web designer uses cascading style sheet that will enhance website layout and
presentation.
 CSS helps to design a webpage using HTML code.
 CSS is widely used by designers and developers to style a website.

Notepad++ PHP
JavaScript
HTML
CSS
Windows,Linux,
UNIX, Mac OS
(Using third party
tool)
Syntax
Highlighting
Auto indentation
Auto completion
Free C++
And uses
Win 32
API & STL
JavaScript  To make your website interactive, for example, when searching a query
on Google or clicking on a button to change the page, there is a
JavaScript working behind.
 To enhance user engagement, implementing JavaScript on your website is
crucial. For example, when you open Gmail and click on inbox, rather
than loading the entire page, a smooth transition will happen and the
page will load.

HTML,CSS,JavaScript Programming languages and also working that we have to do with
websites.
HTML Introduction:
HTML stands for
 HTML is the standard markup language for creating Web pages
 HTML describes the structure of a Web page
 HTML consists of a series of elements
 HTML elements tell the browser how to display the content
 CODE:
 The <!DOCTYPE html> declaration defines that this document is an HTML5 document
 The <html> element is the root element of an HTML page
 The <head> element contains meta information about the HTML page
 The <title> element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab)
 The <body> element defines the document's body, and is a container for all the visible contents, such as headings,
paragraphs, images, hyperlinks, tables, lists, etc.
 The <h1> element defines a large heading
 The <p> element defines a paragraph.
<!DOCTYPE html>
<HTML>
<html lang="en">
<meta charset="utf-8">
<title>Page Title</title>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
<p>This is a another paragraph.</p>
</body>
</html>
OUTPUT:
This is a Heading
This is a paragraph.
This is a another paragraph.
HTML ATTRIBUTES
Description about The Benefit using HTML,CSS,JavaScript..
HTML Attributes
 HTML elements can have attributes
 Attributes provide additional information about the element
 Attributes come in name/value pairs like charset="utf-8"
HTML Links
HTML links are defined with <a> tags:
Example
<a href="https://www.w45.com">This is a link</a>
HTML Images
HTML images are defined with <img> tags.
The source file (src), alternative text (alt), width, and height are provided as attributes:
Example
<img src="img_ws.jpg" alt="W3Schools" style="width:120px;height:150px"
APPLY ATTRIBUTES TO FORM TABLE:
HTML TABLE TAG’S
HTML with CSS Code making table code:
Output:
HTML Documents
HTML Documents
 All HTML documents must start with a document type declaration: <!DOCTYPE html>.
 The HTML document itself begins with <html> and ends with </html>.
 The visible part of the HTML document is between <body> and </body>.
HTML Document Structure
Below is a visualization of an HTML document (an HTML Page):
<html>
<head>
<title>Page title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>
HTML Headings
Date:12/Aug/2022
 HTML headings are defined with <h1> to <h6> tags.
 <h1> defines the most important heading. <h6> defines the least important heading
Example:
<!DOCTYPE html>
<html>
<body>
<h1> heading 1</h1>
<h2> heading 2</h2>
<h3> heading 3</h3>
<h4> heading 4</h4>
<h5> heading 5</h5>
<h6> heading 6</h6>
</body>
</html>
Output:
heading 1
heading 2
heading 3
heading 4
heading 5
heading 6
HTML Lists
HTML lists are defined with <ul> (unordered/bullet list) or <ol> (ordered/numbered list) tags,
followed by <li> tags (list items)
EXAMPLE:
<!DOCTYPE html>
<html>
<body>
<h2>An Unordered HTML List</h2>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<h2>An Ordered HTML List</h2>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
</body>
</html>
OUTPUT:
An Unordered HTML List
 Coffee
 Tea
 Milk
An Ordered HTML List
1. Coffee
2. Tea
3. Milk
CSS
ABOUT CSS
 CSS stands for
 CSS describes how HTML elements are to be displayed
 Cascading Style Sheets (CSS) is a stylesheet language used to describe the
presentation of a document written in HTML or XML (including XML dialects such as
SVG, Math-ml or XHTML).
 CSS describes how elements should be rendered on screen, on paper, in speech, or on other
media
TYPE OF CSS
 Inline CSS.(u
 Internal or Embedded CSS.( allows you to define styles for a particular HTML
document as a whole in one place.)
 External CSS (sheet can be stored in an external file)
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="mystyle.css">
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
CSS Syntax
A CSS rule consists of a selector and a declaration block:
The selector points to the HTML element to style (h1).
The declaration block (in curly braces) contains one or more declarations separated by
semicolons.
Each declaration includes a CSS property name and a value, separated by a colon.
In the following example all <p> elements will be center-aligned, red and have a font size of 32
pixels or more then this.
JavaScript
 JavaScript is the Programming Language for the Web.
 JavaScript can update and change both HTML and CSS.
 JavaScript can calculate, manipulate and validate data.
JavaScript variables can be:
 Numbers(JavaScript has only one type of number. Numbers can be written with or
without decimals.)
 Strings(Strings store text. Strings are written inside quotes. You can use single or
double quotes)
 Objects(
 Arrays
 Functions
JavaScript Variables
JavaScript variables are containers for storing data values.
In this example, x, y, and z, are variables
Example:
Output:
What can JavaScript Do?
This section contains some examples of what JavaScript can do:
 JavaScript Can Change HTML Content
 JavaScript Can Change HTML Attribute Values
 JavaScript Can Change HTML Styles (CSS)
 JavaScript Can Hide HTML Elements
 JavaScript Can Show HTML Elements
Project’s using these languages
Making Age calculator with the help of HTML,CSS,JavaScript:
Using HTML Code
Output:
.Css in project .
AGE CALCULATOR CSS:CSS help to style and layout web pages .
Output:
JavaScript :
Final output:
INDUSTRIAL TRAINING REPORT FINAL YEAR

More Related Content

Similar to INDUSTRIAL TRAINING REPORT FINAL YEAR

Bootcamp - Web Development Session 2
Bootcamp - Web Development Session 2Bootcamp - Web Development Session 2
Bootcamp - Web Development Session 2GDSCUniversitasMatan
 
Front end full stack development module 1pptx
Front end full stack development module 1pptxFront end full stack development module 1pptx
Front end full stack development module 1pptxMaruthiPrasad96
 
Teched Inetrgation ppt and lering in simple
Teched Inetrgation ppt  and lering in simpleTeched Inetrgation ppt  and lering in simple
Teched Inetrgation ppt and lering in simpleJagadishBabuParri
 
How to Create a College Website Page Using HTML
How to Create a College Website Page Using HTMLHow to Create a College Website Page Using HTML
How to Create a College Website Page Using HTMLYahyaMemon2
 
Web development using HTML and CSS
Web development using HTML and CSSWeb development using HTML and CSS
Web development using HTML and CSSSiddhantSingh980217
 
Introduction to whats new in css3
Introduction to whats new in css3Introduction to whats new in css3
Introduction to whats new in css3Usman Mehmood
 
Web design and Development
Web design and DevelopmentWeb design and Development
Web design and DevelopmentShagor Ahmed
 
Introduction to Web Technology and Web Page Development
Introduction to Web Technology and Web Page DevelopmentIntroduction to Web Technology and Web Page Development
Introduction to Web Technology and Web Page DevelopmentBhargaviDalal4
 
HTML 5 Complete Reference
HTML 5 Complete ReferenceHTML 5 Complete Reference
HTML 5 Complete ReferenceEPAM Systems
 
What is html xml and xhtml
What is html xml and xhtmlWhat is html xml and xhtml
What is html xml and xhtmlFkdiMl
 
Shreyansh_patni web developer
Shreyansh_patni web developerShreyansh_patni web developer
Shreyansh_patni web developerShreyanshpatni5
 
inventory mangement project.pdf
inventory mangement project.pdfinventory mangement project.pdf
inventory mangement project.pdfMeenakshiThakur86
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSSMario Hernandez
 
INTRODUCTION FOR HTML
INTRODUCTION  FOR HTML INTRODUCTION  FOR HTML
INTRODUCTION FOR HTML Rahul Bathri
 

Similar to INDUSTRIAL TRAINING REPORT FINAL YEAR (20)

Day1
Day1Day1
Day1
 
Bootcamp - Web Development Session 2
Bootcamp - Web Development Session 2Bootcamp - Web Development Session 2
Bootcamp - Web Development Session 2
 
Grade 10 COMPUTER
Grade 10 COMPUTERGrade 10 COMPUTER
Grade 10 COMPUTER
 
Front end full stack development module 1pptx
Front end full stack development module 1pptxFront end full stack development module 1pptx
Front end full stack development module 1pptx
 
Lab#2 overview of html
Lab#2 overview of htmlLab#2 overview of html
Lab#2 overview of html
 
Teched Inetrgation ppt and lering in simple
Teched Inetrgation ppt  and lering in simpleTeched Inetrgation ppt  and lering in simple
Teched Inetrgation ppt and lering in simple
 
How to Create a College Website Page Using HTML
How to Create a College Website Page Using HTMLHow to Create a College Website Page Using HTML
How to Create a College Website Page Using HTML
 
Web development using HTML and CSS
Web development using HTML and CSSWeb development using HTML and CSS
Web development using HTML and CSS
 
Introduction to whats new in css3
Introduction to whats new in css3Introduction to whats new in css3
Introduction to whats new in css3
 
Web design and Development
Web design and DevelopmentWeb design and Development
Web design and Development
 
Introduction to Web Technology and Web Page Development
Introduction to Web Technology and Web Page DevelopmentIntroduction to Web Technology and Web Page Development
Introduction to Web Technology and Web Page Development
 
HTML 5 Complete Reference
HTML 5 Complete ReferenceHTML 5 Complete Reference
HTML 5 Complete Reference
 
What is html xml and xhtml
What is html xml and xhtmlWhat is html xml and xhtml
What is html xml and xhtml
 
HTML Overview
HTML OverviewHTML Overview
HTML Overview
 
MobileStore.pptx
MobileStore.pptxMobileStore.pptx
MobileStore.pptx
 
Shreyansh_patni web developer
Shreyansh_patni web developerShreyansh_patni web developer
Shreyansh_patni web developer
 
inventory mangement project.pdf
inventory mangement project.pdfinventory mangement project.pdf
inventory mangement project.pdf
 
Vijay it 2 year
Vijay it 2 yearVijay it 2 year
Vijay it 2 year
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
INTRODUCTION FOR HTML
INTRODUCTION  FOR HTML INTRODUCTION  FOR HTML
INTRODUCTION FOR HTML
 

Recently uploaded

Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHC Sai Kiran
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfAsst.prof M.Gokilavani
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.eptoze12
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvLewisJB
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 

Recently uploaded (20)

Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
young call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Serviceyoung call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Service
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECH
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvv
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 

INDUSTRIAL TRAINING REPORT FINAL YEAR

  • 1. Himachal Pradesh Takniki Shiksha Board,Dharamshala. INDUSTRIAL TRAINING REPORT Four weeks Industrial Training At EXCELLENCE TECHNOLOGY MOHALI (From 5th AUGUST 2022 to 31 AUGUST 2022) SUBMITTED BY Kanika sharma Roll No :- 200710207011 BRANCH IT 5TH SEMESTER GOVT POLYTECHNIC HAMIRPUR
  • 2. ACKNOWLEDGEMENT In this opportunity to present my vote of thanks to all those guideposts who really acted as lightning pillars to enlighten our way throughout this project that has led to successful and satisfactory completion of this study. I am really grateful to Mrs. Anjali Sharma and Mr. Lalit Thakur for their active support, warm-hearted guidance, for his encouraging support and providing a meticulous platform to learn. Lastly, I am thankful to all, particularly my team members, who have been instrumental in creating a proper, healthy & conductive environment for me but without their help, it would have been extremely difficult for me to prepare the project in a time bound framework. In this opportunity to present my vote of thanks to all those guideposts who really acted as lightning pillars to enlighten our way throughout this project that has led to successful and satisfactory completion of this study. I am really grateful to Mrs. Anjali Sharma and Mr. Lalit Thakur for their active support, whole-hearted guidance, sincere cooperation for giving us a precious time involving a involvement during the course also giving us a precious attention Lastly, I am thankful to all, particularly my team members, who have been instrumental in creating a proper, healthy & conductive environment for me but without their help, it would have been extremely difficult for me to prepare the project in a time bound framework. ~Submitted by Kanika & Saksham
  • 3. .Introduction about the Company . Excellence Technology is one of the top reputed ISO 9001:2015 Certified Software Development Company in Chandigarh and Mohali. We develop mobile applications, Games, antivirus and websites. We provide Best industrial training in Chandigarh and Mohali. Excellence Technology Pvt. Ltd. Excellence Technology is a complete IT solutions providing company based in Mohali. Excellence technology was created to achieve the goal of providing its clients state-of-art web development services comparable with the best in the world. The services provided by Excellence technology Pvt. Ltd. Are:- ✔ Web Development
  • 4. ✔ .INTRODUCTION. Name : Kanika sharma Institute Name : Excellence Technology Branch Mohali [Punjab] Project Title : Web Development Project Category : HTML,CSS,JavaScript Trainer Name Mr Lalit Thakur
  • 5. Web Development: It is the work involved in developing a website for the Internet or an intranet. Web development can range from developing a simple single static page of plain text to complex web applications, electronic businesses, and social network services. Web development is the building and maintenance of websites. Types of Web Development : .ThreetypesofDeveloper’s. Front-End Web Development.  Back-End Web Development. Full-stack Web Development. .Overviews of these Developments. --------------------------------------- Software that are used by the Developers Tool Name Programming Languages Operating Systems Best Features Cost Written In Visual Studio Code Supports many languages like C++, Java, TypeScript, JSON and many more. Windows,Linux, Mac OS Auto-completion Debugging with breakpoints. Free TypeScript JavaScript CSS Sublime Text Supports many programming languages. Windows,Linux, Mac OS Provides instant switching between projects. Cross platform support. $ 80 C++ & Python
  • 6. …...Working of Web development Programmers…… ..Front-End Web Development.. Front-end web development is known as client-side web development. It is a procedure of designing the user interface of the website with front-end technologies like HTML, CSS, and JavaScript. The aim of developing the front end of the website is to allow website visitors to read the web content effortlessly. To motivate you to build a clean and beautiful website interfaces. Programming languages under front-end: Technologies Explanation HTML  Based on research by Statista, the HTML/CSS and JavaScript are the most commonly used languages.  Web designers use HTML to design the structure and layout of the website.  Design highly interactive pages.  Most of the static pages are designed using HTML.   The web designer uses cascading style sheet that will enhance website layout and presentation.  CSS helps to design a webpage using HTML code.  CSS is widely used by designers and developers to style a website.  Notepad++ PHP JavaScript HTML CSS Windows,Linux, UNIX, Mac OS (Using third party tool) Syntax Highlighting Auto indentation Auto completion Free C++ And uses Win 32 API & STL
  • 7. JavaScript  To make your website interactive, for example, when searching a query on Google or clicking on a button to change the page, there is a JavaScript working behind.  To enhance user engagement, implementing JavaScript on your website is crucial. For example, when you open Gmail and click on inbox, rather than loading the entire page, a smooth transition will happen and the page will load.  HTML,CSS,JavaScript Programming languages and also working that we have to do with websites. HTML Introduction: HTML stands for  HTML is the standard markup language for creating Web pages  HTML describes the structure of a Web page  HTML consists of a series of elements  HTML elements tell the browser how to display the content  CODE:  The <!DOCTYPE html> declaration defines that this document is an HTML5 document  The <html> element is the root element of an HTML page  The <head> element contains meta information about the HTML page  The <title> element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab)  The <body> element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.  The <h1> element defines a large heading  The <p> element defines a paragraph. <!DOCTYPE html> <HTML> <html lang="en"> <meta charset="utf-8"> <title>Page Title</title> <body> <h1>This is a Heading</h1>
  • 8. <p>This is a paragraph.</p> <p>This is a another paragraph.</p> </body> </html> OUTPUT: This is a Heading This is a paragraph. This is a another paragraph. HTML ATTRIBUTES Description about The Benefit using HTML,CSS,JavaScript.. HTML Attributes  HTML elements can have attributes  Attributes provide additional information about the element  Attributes come in name/value pairs like charset="utf-8" HTML Links HTML links are defined with <a> tags: Example <a href="https://www.w45.com">This is a link</a> HTML Images
  • 9. HTML images are defined with <img> tags. The source file (src), alternative text (alt), width, and height are provided as attributes: Example <img src="img_ws.jpg" alt="W3Schools" style="width:120px;height:150px" APPLY ATTRIBUTES TO FORM TABLE:
  • 10. HTML TABLE TAG’S HTML with CSS Code making table code: Output:
  • 11. HTML Documents HTML Documents  All HTML documents must start with a document type declaration: <!DOCTYPE html>.  The HTML document itself begins with <html> and ends with </html>.  The visible part of the HTML document is between <body> and </body>. HTML Document Structure Below is a visualization of an HTML document (an HTML Page): <html> <head> <title>Page title</title> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> </html> HTML Headings Date:12/Aug/2022  HTML headings are defined with <h1> to <h6> tags.
  • 12.  <h1> defines the most important heading. <h6> defines the least important heading Example: <!DOCTYPE html> <html> <body> <h1> heading 1</h1> <h2> heading 2</h2> <h3> heading 3</h3> <h4> heading 4</h4> <h5> heading 5</h5> <h6> heading 6</h6> </body> </html> Output: heading 1 heading 2 heading 3 heading 4 heading 5 heading 6 HTML Lists HTML lists are defined with <ul> (unordered/bullet list) or <ol> (ordered/numbered list) tags, followed by <li> tags (list items) EXAMPLE: <!DOCTYPE html> <html>
  • 13. <body> <h2>An Unordered HTML List</h2> <ul> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul> <h2>An Ordered HTML List</h2> <ol> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol> </body> </html> OUTPUT: An Unordered HTML List  Coffee  Tea  Milk An Ordered HTML List 1. Coffee 2. Tea 3. Milk CSS
  • 14. ABOUT CSS  CSS stands for  CSS describes how HTML elements are to be displayed  Cascading Style Sheets (CSS) is a stylesheet language used to describe the presentation of a document written in HTML or XML (including XML dialects such as SVG, Math-ml or XHTML).  CSS describes how elements should be rendered on screen, on paper, in speech, or on other media TYPE OF CSS  Inline CSS.(u  Internal or Embedded CSS.( allows you to define styles for a particular HTML document as a whole in one place.)  External CSS (sheet can be stored in an external file) <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="mystyle.css"> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html>
  • 15. CSS Syntax A CSS rule consists of a selector and a declaration block: The selector points to the HTML element to style (h1). The declaration block (in curly braces) contains one or more declarations separated by semicolons. Each declaration includes a CSS property name and a value, separated by a colon. In the following example all <p> elements will be center-aligned, red and have a font size of 32 pixels or more then this. JavaScript  JavaScript is the Programming Language for the Web.  JavaScript can update and change both HTML and CSS.  JavaScript can calculate, manipulate and validate data. JavaScript variables can be:  Numbers(JavaScript has only one type of number. Numbers can be written with or without decimals.)
  • 16.  Strings(Strings store text. Strings are written inside quotes. You can use single or double quotes)  Objects(  Arrays  Functions JavaScript Variables JavaScript variables are containers for storing data values. In this example, x, y, and z, are variables Example: Output: What can JavaScript Do? This section contains some examples of what JavaScript can do:  JavaScript Can Change HTML Content  JavaScript Can Change HTML Attribute Values  JavaScript Can Change HTML Styles (CSS)  JavaScript Can Hide HTML Elements  JavaScript Can Show HTML Elements
  • 17. Project’s using these languages Making Age calculator with the help of HTML,CSS,JavaScript: Using HTML Code Output:
  • 18. .Css in project . AGE CALCULATOR CSS:CSS help to style and layout web pages .