SlideShare a Scribd company logo
1 of 27
A
TRAINING PRESENTATION
ON
WEBSITE DESIGNING
Session-(2021-2022)
Submitted by:
Shreyansh Patni
(PCE19EC064)
3rd Year
Submitted to:
Dr. Payal Bansal
(Professor)
Department of Electronics and Communication
Poornima College of Engineering
Contents
Training Platform
Training Description
Project
Conclusion
Future Scope
Technology
TRAINING PLATFORM :
INTERNSHIP STUDIO
• Internship Studio is a platform developed to
help students build their profiles by providing
them the right exposure to develop the
required skills in the respective domain.
• Internship Studio is an online training and
internship platform founded on the principle
that students interested in any field should
not be required to have any sort of
prerequisite knowledge in order to start their
journey in that particular field.
WHY INTERNSHIP STUDIO?
• It encourage students to work on projects &
learn from the professionals.
• Infuses a learning spirit through the best of
best mentorship.
• Fills the gap between bookish knowledge and
practical knowledge by providing training +
internship.
• Internship Studio provides an industry
exposure within your domestic vicinity.
TRAINING DESCRIPTION
INTRODUCTION TO WEB DESIGNING
• Web design refers to the design of websites that
are displayed on the internet.
• Web design is the process of planning,
conceptualizing, and arranging content online.
• It’s the process of planning and building the
elements of website, from structure and layout
to images, colors, fonts and graphics.
• Web design also includes web apps, mobile apps,
and user interface design.
• A web designer works on the appearance,
layout, and, in some cases, content of a
WHAT IS HTML?
 HTML stands for Hyper Text Markup Language.
 HTML is a markup language
 A markup language is a set of markup tags.
 The tags describe document content
 HTML documents contain HTML Tags and Plain Text.
 HTML documents are also called Web Pages.
HTML TAGS
.
 HTML tags are keywords (tag names) surrounded by Angle
Brackets like <HTML>.
 HTML tags come in pairs like <p> and </p>.
 The first tag in a pair is the START TAG, the second tag is the END
TAG.
 The end tag is written like the start tag, with a slash before the
tag name.
 Start and end tags are also called opening and closing tags.
EXAMPLE:
BASIC HTML PAGE STRUCTURE
An HTML Document is mainly divided into two parts:
• HEAD: This contains the information about the HTML
document. For Example, Title of the page, version of
HTML, Meta Data etc.
• BODY: This contains everything you want to display on
the Web Page.
HTML TAGS
Html headings are defined with the <h1> to <h6> tags.
<h1> this is a heading</h1>
Html paragraphs are defined with the <p> tag.
<p>this is a paragrapgh.</p>
Html links are defined with the <a> tag.
<ahref=http://espsolutions.com>this is a link</a>
Html images are defined with the <img> tag.
<img src=“espelogo.jpg” alt=“espsolutions.com” width=“105”
height=“105>
Html uses tags like <b> and <i> for formatting output, like bold or italic text.
<b>this text is bold</b>, <i>this text is italic</i>
HTML ATTRIBUTES
 Html elements can have ATTRIBUTES
 Attributes provide Additional Information about an element
 Attributes are always specefid in theSTART TAG.
 Attributes come in name/value pairs like: name=“value”.
<IMG SRC =“ESPELOGO.JPG” WIDTH =“105” HEIGHT=“105”>
NAME VALUE NAME VALUE NAME VALUE
HTML LIST:EXAMPLE
UNORDERED LIST:
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
ORDERED LIST:
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
 CSS stands for cascading style sheets.
 Styles define how to display html elements.
 Styles were added to html 4.0 to solve a problem.
 External style sheets can save a lot of work.
 External style sheets are stored in CSS files.
 A CSS file allows to separate web sites HTML content from it’s style.
WHAT IS CSS?
CSS SYNTAX
A CSS rule has two main parts: a selector, and one or more declarations:
THE ELEMENT SELECTOR
 The element selector selects the element based on the element name.
EXAMPLE:
p {
text-align: center;
color: red;
}
THE ID SELECTOR
 The id selector uses the id attribute of an html tag to find the specific element.
 An id should be unique within a page, so you should use the id selector when you want to find a single,
unique element.
 It is a defined with a “#”.
.
EXAMPLE:
<p id=“para1”> hi </p>
#para1
{
text-align: center;
color: red;
}
THE CLASS SELECTOR
 The class selector is used to specify a style for a group of elements.
 The class selector finds elements with the specific class.
 The class selector uses the html class attribute, and is defined with a “ . ”
EXAMPLE:
 Html elements with class = “center”
.center{
text-align : center;
color: red;
}
THREE WAYS TO INSERT CSS
 There are three ways of inserting a style sheet:
• External Style Sheet
• Internal style sheet
• Inline style
EXTERNAL STYLE SHEET
 An external style sheet is ideal when the style is applied to many pages. With an external style sheet,
one can change the look of an entire website by changing just one file.
EXAMPLE:
<head>
<link rel=“stylesheet” type=“text/css” href=“mystyle.css”
</head>
 An internal style sheet should be used when a single document has a unique style . You
define internal styles in the head section of an html page, inside the <style> tag, like this:
<head>
<style>
body{
background-color:linen;
}
h1 {
color: maroon;
margin-left: 40px;
}
</style>
</head>
INTERNAL STYLE SHEET
An inline style loses many of the advantages of a style sheet (by mixing
content with presentation).
This method should be used sparingly.
To use inline styles, add the style attribute to the relevant tag. The style
attribute can contain any CSS property.
EXAMPLE:
<h1 style=“color:blue;margin-left:30px;”>this is a heding.<h1>
INLINE STYLES
THE CSS BOX MODEL
 All html elements can be considered as boxes . In CSS, the term “box model” is used
when talking about design and layout
 The box model allows to place a border around elements and space elements in
relation to other elements
 The Image below illustrates the box model:
.
WHAT IS JAVASCRIPT?
 JavaScript is a Scripting Language.
 JavaScript is among the most powerful and
flexible programming languages of the web.
 A Scripting language is a lightweight
programming language.
 JavaScript is programming code that can be
inserted into HTML pages.
 JavaScript inserted into HTML pages, can be
executed by all modern web browsers.
 It powers the dynamic behavior on most
websites
HOW TO USE JAVASCRIPT?
The<script>Tag:
 To insert a JavaScript into an HTML page, use the <script> tag.
 The <script> and </script> tells where JavaScript starts and ends.
<script>
alert(“My first JavaScript”)
</script>
JavaScriptin<body>:
<html>
<body>
<script>
document.write(<h1>“Thisisaheading”</h1>)
</script>
</body>
</html>
PROJECT
E-COMMERCE WEBSITE DESIGN
Goals of the Project:
 To design a website with basic pages/features which are
necessary for an e-commerce website with the help of
HTML, CSS and JavaScript
 The website should be responsive, i.e. an approach to
web design that makes web pages render well on a
variety of devices and window or screen sizes from
minimum to maximum display size.
PROJECT: https://inernship-finalproject.shreyansh2105.repl.co/
PROGRAMMING IN repl.it
FUTURE SCOPE
 With the knowledge I have gained by my training in website designing, I am confident
that in the future I can design a website more effectively by adding more and
different actions using HTML, CSS and JavaScript.
 Currently, the IT industry is overflowing with opportunities for website designing in
India as well as abroad. Using your vivid, creative imagination and the never ending
demand for websites are the reasons to opt web designing as a career path.
 Importance of web designing is increasing because of growth of other business
sectors where web designers can be engaged in various other fields, some of which
are mentioned below-
• Printers
• Design Studios
• Marketing Firms
• Publishing Houses
• Advertising Agencies
• Educational Institutes
CONCLUSION
• I came to know about the web
designing and web development.
• I came to know about the difference
between the work of web designer
and web developer.
• I have learnt about the basic
concepts of HTML, CSS and
JavaScript.
• I have learnt about the Bootstrap and
its features.
• I have also learnt how to design a
basic website using the skills of
HTML, CSS and JavaScript.
Shreyansh_patni web developer
Shreyansh_patni web developer

More Related Content

Similar to Shreyansh_patni web developer

Similar to Shreyansh_patni web developer (20)

Rational HATS and CSS
Rational HATS and CSSRational HATS and CSS
Rational HATS and CSS
 
Web Designing
Web DesigningWeb Designing
Web Designing
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
Lecture 3CSS part 1.pptx
Lecture 3CSS part 1.pptxLecture 3CSS part 1.pptx
Lecture 3CSS part 1.pptx
 
HTML practical file
HTML practical fileHTML practical file
HTML practical file
 
chitra
chitrachitra
chitra
 
Css tutorial
Css tutorialCss tutorial
Css tutorial
 
HTML_JavaScript_Malaysia_2008 (2).ppt
HTML_JavaScript_Malaysia_2008 (2).pptHTML_JavaScript_Malaysia_2008 (2).ppt
HTML_JavaScript_Malaysia_2008 (2).ppt
 
SDP_-_Module_4.ppt
SDP_-_Module_4.pptSDP_-_Module_4.ppt
SDP_-_Module_4.ppt
 
Html
HtmlHtml
Html
 
html
htmlhtml
html
 
Html5 css3
Html5 css3Html5 css3
Html5 css3
 
Html and html5 cheat sheets
Html and html5 cheat sheetsHtml and html5 cheat sheets
Html and html5 cheat sheets
 
Introduction to HTML4
Introduction to HTML4Introduction to HTML4
Introduction to HTML4
 
Basics about front-end
Basics about front-endBasics about front-end
Basics about front-end
 
CLIENT SIDE PROGRAMMING
CLIENT SIDE PROGRAMMINGCLIENT SIDE PROGRAMMING
CLIENT SIDE PROGRAMMING
 
Punit summer traning report.pdf
Punit summer traning report.pdfPunit summer traning report.pdf
Punit summer traning report.pdf
 
Introduction to css by programmerblog.net
Introduction to css by programmerblog.netIntroduction to css by programmerblog.net
Introduction to css by programmerblog.net
 
Css introduction
Css  introductionCss  introduction
Css introduction
 

Recently uploaded

Call Us ✡️97111⇛47426⇛Call In girls Vasant Vihar༒(Delhi)
Call Us ✡️97111⇛47426⇛Call In girls Vasant Vihar༒(Delhi)Call Us ✡️97111⇛47426⇛Call In girls Vasant Vihar༒(Delhi)
Call Us ✡️97111⇛47426⇛Call In girls Vasant Vihar༒(Delhi)jennyeacort
 
NATA 2024 SYLLABUS, full syllabus explained in detail
NATA 2024 SYLLABUS, full syllabus explained in detailNATA 2024 SYLLABUS, full syllabus explained in detail
NATA 2024 SYLLABUS, full syllabus explained in detailDesigntroIntroducing
 
3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdf3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdfSwaraliBorhade
 
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130  Available With RoomVIP Kolkata Call Girl Gariahat 👉 8250192130  Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Roomdivyansh0kumar0
 
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...Suhani Kapoor
 
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts ServiceCall Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Servicejennyeacort
 
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...Suhani Kapoor
 
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service AmravatiVIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service AmravatiSuhani Kapoor
 
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...Yantram Animation Studio Corporation
 
Cheap Rate Call girls Malviya Nagar 9205541914 shot 1500 night
Cheap Rate Call girls Malviya Nagar 9205541914 shot 1500 nightCheap Rate Call girls Malviya Nagar 9205541914 shot 1500 night
Cheap Rate Call girls Malviya Nagar 9205541914 shot 1500 nightDelhi Call girls
 
如何办理(UVa毕业证书)弗吉尼亚大学毕业证毕业证(文凭)成绩单原版一比一定制
如何办理(UVa毕业证书)弗吉尼亚大学毕业证毕业证(文凭)成绩单原版一比一定制如何办理(UVa毕业证书)弗吉尼亚大学毕业证毕业证(文凭)成绩单原版一比一定制
如何办理(UVa毕业证书)弗吉尼亚大学毕业证毕业证(文凭)成绩单原版一比一定制didi bibo
 
Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`
Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`
Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`dajasot375
 
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfChapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfParomita Roy
 
SCRIP Lua HTTP PROGRACMACION PLC WECON CA
SCRIP Lua HTTP PROGRACMACION PLC  WECON CASCRIP Lua HTTP PROGRACMACION PLC  WECON CA
SCRIP Lua HTTP PROGRACMACION PLC WECON CANestorGamez6
 
Call Girls in Okhla Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Okhla Delhi 💯Call Us 🔝8264348440🔝Call Girls in Okhla Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Okhla Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...Call Girls in Nagpur High Profile
 
SD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxSD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxjanettecruzeiro1
 
Revit Understanding Reference Planes and Reference lines in Revit for Family ...
Revit Understanding Reference Planes and Reference lines in Revit for Family ...Revit Understanding Reference Planes and Reference lines in Revit for Family ...
Revit Understanding Reference Planes and Reference lines in Revit for Family ...Narsimha murthy
 
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130Suhani Kapoor
 
NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...
NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...
NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...Amil baba
 

Recently uploaded (20)

Call Us ✡️97111⇛47426⇛Call In girls Vasant Vihar༒(Delhi)
Call Us ✡️97111⇛47426⇛Call In girls Vasant Vihar༒(Delhi)Call Us ✡️97111⇛47426⇛Call In girls Vasant Vihar༒(Delhi)
Call Us ✡️97111⇛47426⇛Call In girls Vasant Vihar༒(Delhi)
 
NATA 2024 SYLLABUS, full syllabus explained in detail
NATA 2024 SYLLABUS, full syllabus explained in detailNATA 2024 SYLLABUS, full syllabus explained in detail
NATA 2024 SYLLABUS, full syllabus explained in detail
 
3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdf3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdf
 
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130  Available With RoomVIP Kolkata Call Girl Gariahat 👉 8250192130  Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Room
 
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
 
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts ServiceCall Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
 
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
 
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service AmravatiVIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
 
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
 
Cheap Rate Call girls Malviya Nagar 9205541914 shot 1500 night
Cheap Rate Call girls Malviya Nagar 9205541914 shot 1500 nightCheap Rate Call girls Malviya Nagar 9205541914 shot 1500 night
Cheap Rate Call girls Malviya Nagar 9205541914 shot 1500 night
 
如何办理(UVa毕业证书)弗吉尼亚大学毕业证毕业证(文凭)成绩单原版一比一定制
如何办理(UVa毕业证书)弗吉尼亚大学毕业证毕业证(文凭)成绩单原版一比一定制如何办理(UVa毕业证书)弗吉尼亚大学毕业证毕业证(文凭)成绩单原版一比一定制
如何办理(UVa毕业证书)弗吉尼亚大学毕业证毕业证(文凭)成绩单原版一比一定制
 
Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`
Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`
Abu Dhabi Call Girls O58993O4O2 Call Girls in Abu Dhabi`
 
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfChapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
 
SCRIP Lua HTTP PROGRACMACION PLC WECON CA
SCRIP Lua HTTP PROGRACMACION PLC  WECON CASCRIP Lua HTTP PROGRACMACION PLC  WECON CA
SCRIP Lua HTTP PROGRACMACION PLC WECON CA
 
Call Girls in Okhla Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Okhla Delhi 💯Call Us 🔝8264348440🔝Call Girls in Okhla Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Okhla Delhi 💯Call Us 🔝8264348440🔝
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
 
SD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxSD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptx
 
Revit Understanding Reference Planes and Reference lines in Revit for Family ...
Revit Understanding Reference Planes and Reference lines in Revit for Family ...Revit Understanding Reference Planes and Reference lines in Revit for Family ...
Revit Understanding Reference Planes and Reference lines in Revit for Family ...
 
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
 
NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...
NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...
NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...
 

Shreyansh_patni web developer

  • 1. A TRAINING PRESENTATION ON WEBSITE DESIGNING Session-(2021-2022) Submitted by: Shreyansh Patni (PCE19EC064) 3rd Year Submitted to: Dr. Payal Bansal (Professor) Department of Electronics and Communication Poornima College of Engineering
  • 3. TRAINING PLATFORM : INTERNSHIP STUDIO • Internship Studio is a platform developed to help students build their profiles by providing them the right exposure to develop the required skills in the respective domain. • Internship Studio is an online training and internship platform founded on the principle that students interested in any field should not be required to have any sort of prerequisite knowledge in order to start their journey in that particular field.
  • 4. WHY INTERNSHIP STUDIO? • It encourage students to work on projects & learn from the professionals. • Infuses a learning spirit through the best of best mentorship. • Fills the gap between bookish knowledge and practical knowledge by providing training + internship. • Internship Studio provides an industry exposure within your domestic vicinity.
  • 6. INTRODUCTION TO WEB DESIGNING • Web design refers to the design of websites that are displayed on the internet. • Web design is the process of planning, conceptualizing, and arranging content online. • It’s the process of planning and building the elements of website, from structure and layout to images, colors, fonts and graphics. • Web design also includes web apps, mobile apps, and user interface design. • A web designer works on the appearance, layout, and, in some cases, content of a
  • 7. WHAT IS HTML?  HTML stands for Hyper Text Markup Language.  HTML is a markup language  A markup language is a set of markup tags.  The tags describe document content  HTML documents contain HTML Tags and Plain Text.  HTML documents are also called Web Pages.
  • 8. HTML TAGS .  HTML tags are keywords (tag names) surrounded by Angle Brackets like <HTML>.  HTML tags come in pairs like <p> and </p>.  The first tag in a pair is the START TAG, the second tag is the END TAG.  The end tag is written like the start tag, with a slash before the tag name.  Start and end tags are also called opening and closing tags. EXAMPLE:
  • 9. BASIC HTML PAGE STRUCTURE An HTML Document is mainly divided into two parts: • HEAD: This contains the information about the HTML document. For Example, Title of the page, version of HTML, Meta Data etc. • BODY: This contains everything you want to display on the Web Page.
  • 10. HTML TAGS Html headings are defined with the <h1> to <h6> tags. <h1> this is a heading</h1> Html paragraphs are defined with the <p> tag. <p>this is a paragrapgh.</p> Html links are defined with the <a> tag. <ahref=http://espsolutions.com>this is a link</a> Html images are defined with the <img> tag. <img src=“espelogo.jpg” alt=“espsolutions.com” width=“105” height=“105> Html uses tags like <b> and <i> for formatting output, like bold or italic text. <b>this text is bold</b>, <i>this text is italic</i>
  • 11. HTML ATTRIBUTES  Html elements can have ATTRIBUTES  Attributes provide Additional Information about an element  Attributes are always specefid in theSTART TAG.  Attributes come in name/value pairs like: name=“value”. <IMG SRC =“ESPELOGO.JPG” WIDTH =“105” HEIGHT=“105”> NAME VALUE NAME VALUE NAME VALUE
  • 12. HTML LIST:EXAMPLE UNORDERED LIST: <ul> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul> ORDERED LIST: <ul> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul>
  • 13.  CSS stands for cascading style sheets.  Styles define how to display html elements.  Styles were added to html 4.0 to solve a problem.  External style sheets can save a lot of work.  External style sheets are stored in CSS files.  A CSS file allows to separate web sites HTML content from it’s style. WHAT IS CSS? CSS SYNTAX A CSS rule has two main parts: a selector, and one or more declarations:
  • 14. THE ELEMENT SELECTOR  The element selector selects the element based on the element name. EXAMPLE: p { text-align: center; color: red; } THE ID SELECTOR  The id selector uses the id attribute of an html tag to find the specific element.  An id should be unique within a page, so you should use the id selector when you want to find a single, unique element.  It is a defined with a “#”.
  • 15. . EXAMPLE: <p id=“para1”> hi </p> #para1 { text-align: center; color: red; } THE CLASS SELECTOR  The class selector is used to specify a style for a group of elements.  The class selector finds elements with the specific class.  The class selector uses the html class attribute, and is defined with a “ . ” EXAMPLE:  Html elements with class = “center” .center{ text-align : center; color: red; }
  • 16. THREE WAYS TO INSERT CSS  There are three ways of inserting a style sheet: • External Style Sheet • Internal style sheet • Inline style EXTERNAL STYLE SHEET  An external style sheet is ideal when the style is applied to many pages. With an external style sheet, one can change the look of an entire website by changing just one file. EXAMPLE: <head> <link rel=“stylesheet” type=“text/css” href=“mystyle.css” </head>
  • 17.  An internal style sheet should be used when a single document has a unique style . You define internal styles in the head section of an html page, inside the <style> tag, like this: <head> <style> body{ background-color:linen; } h1 { color: maroon; margin-left: 40px; } </style> </head> INTERNAL STYLE SHEET
  • 18. An inline style loses many of the advantages of a style sheet (by mixing content with presentation). This method should be used sparingly. To use inline styles, add the style attribute to the relevant tag. The style attribute can contain any CSS property. EXAMPLE: <h1 style=“color:blue;margin-left:30px;”>this is a heding.<h1> INLINE STYLES
  • 19. THE CSS BOX MODEL  All html elements can be considered as boxes . In CSS, the term “box model” is used when talking about design and layout  The box model allows to place a border around elements and space elements in relation to other elements  The Image below illustrates the box model:
  • 20. . WHAT IS JAVASCRIPT?  JavaScript is a Scripting Language.  JavaScript is among the most powerful and flexible programming languages of the web.  A Scripting language is a lightweight programming language.  JavaScript is programming code that can be inserted into HTML pages.  JavaScript inserted into HTML pages, can be executed by all modern web browsers.  It powers the dynamic behavior on most websites
  • 21. HOW TO USE JAVASCRIPT? The<script>Tag:  To insert a JavaScript into an HTML page, use the <script> tag.  The <script> and </script> tells where JavaScript starts and ends. <script> alert(“My first JavaScript”) </script> JavaScriptin<body>: <html> <body> <script> document.write(<h1>“Thisisaheading”</h1>) </script> </body> </html>
  • 22. PROJECT E-COMMERCE WEBSITE DESIGN Goals of the Project:  To design a website with basic pages/features which are necessary for an e-commerce website with the help of HTML, CSS and JavaScript  The website should be responsive, i.e. an approach to web design that makes web pages render well on a variety of devices and window or screen sizes from minimum to maximum display size.
  • 24. FUTURE SCOPE  With the knowledge I have gained by my training in website designing, I am confident that in the future I can design a website more effectively by adding more and different actions using HTML, CSS and JavaScript.  Currently, the IT industry is overflowing with opportunities for website designing in India as well as abroad. Using your vivid, creative imagination and the never ending demand for websites are the reasons to opt web designing as a career path.  Importance of web designing is increasing because of growth of other business sectors where web designers can be engaged in various other fields, some of which are mentioned below- • Printers • Design Studios • Marketing Firms • Publishing Houses • Advertising Agencies • Educational Institutes
  • 25. CONCLUSION • I came to know about the web designing and web development. • I came to know about the difference between the work of web designer and web developer. • I have learnt about the basic concepts of HTML, CSS and JavaScript. • I have learnt about the Bootstrap and its features. • I have also learnt how to design a basic website using the skills of HTML, CSS and JavaScript.