SlideShare a Scribd company logo
1 of 20
5
4
3
2
1
STA
RT
MY NAME IS
HELLO!
PRABJOT SINGH
WELCOM
E
INDUSTRIAL TRAINING
REPORT ON
about
history
timeline
teams
services
follow
tttfdd
history
history
timeline
teams
services
follow
In 1989, whilst working at CERN Tim Berners-
Lee proposed to create a global hypertext project,
which later became known as the World Wide Web
During 1991 to 1993 the World Wide Web was
born. Text-only pages could be viewed using a
simple line-mode Browser. In 1993 Marc
Andreessen and Eric Bin, created the Mosaic
browser. At the time there were multiple browsers,
however the majority of them were Unix-based and
naturally text heavy. There had been no integrated
approach to graphic design elements such as images
or sounds. The Mosaic browser broke this mould.
The W3C was created in October 1994 to "lead the
World Wide Web to its full potential by developing
common protocols that promote its evolution and
ensure its interoperability. Throughout 1996 to
1999 the browser wars began,
as Microsoft and Netscape fought for ultimate
browser dominance.
Tim Berners-lee
dates
timeline
teams
services
follow
1991
HEADING
PROPOSED TO
SHARE
DOCUMENTS
HEADING
HTML TAGS
MENTIONED
IN INTERNET
198
9
HEADING
199
3
WWW was
introduced
about
history
timeline
teams
services
follow
1 2 3
TIM BERNER’S
LEE
PROFESSOR AT
THE MASSACHUSSETS
INSTITUTE OF
TECHNOLOGY
Inventor of the World
Wide Web
MARC
ANDREESSEN
ERIC J. BIN
CO-FOUNDER OF
NETSCAPE
American software
programmer who is the
co-creator of MOSIAC
CO-AUTHOR
OF MOSIAC
American entrepre
neur and software
engineer.
about
history
purpose
teams
services
follow
HEADING
Web design is
important
because it
impacts how
your audience
perceives your
brand.
HEADING HEADING
The
impression
you make on
them can
either get
them to
remain on
your page and
learn about
your business
. Your
design gives
them insight
as to how
you view
your
audience.
about
history
timeline
teams
topics
follow
HTML TAGS
: An HTML tag surrounds the
content and apply meaning to
it. It is
written between < and >
brackets
HTML
FORMATTING
HTML
JAVASCRIPT
A Script is a small program
which is used with HTML to
make web pages more
attractive, dynamic and
interactive,
such as an alert popup window
on mouse click. Currently, the
most popular scripting
language is JavaScript used for
websites.
HTML
CLASSES
The HTML class attribute is used to
specify a single or multiple class
names for an HTML
element. The class name can be used
by CSS and JavaScript to do some
tasks for HTML ELEMENTS
HTML CSS
CSS stands for Cascading Style
Sheets. It is a style sheet
language which is used to
describe the look and
formatting of a document
written in Markup language. It
provides an
additional feature to HTML.
HTML ATTRIBUTES
An attribute in HTML provides
extra information about the
element,
and it is applied within the
start tag. An HTML attribute
contains two fields:
name & value.
HTML Formatting is a process
of formatting text for better
look and feel. HTML provides
us ability to format text with
about
history
timeline
teams
TAGS
TAGS
TAGS
A
B
C
01
02
03
04
MAIN SYNTAX
<element
attribute_name="value">content</element>
STYLE ATTRIBUTE
<p style="height: 50px; color: blue">It will add
style property in element</p>
TITLE ATTRIBUTE
With <h1> tag:
1. <h1 title="This is heading tag">Example of
title attribute</h1>
With <p> tag:
1. <p title="This is paragraph tag">Move the
cursor over the heading and paragrap
h, and you will see a description as a
tooltip</p>
ATTRUBUTES
1
TITLE 01
This is a logical tag, which tells the browser
that the text is
important.
STRONG
2
TITLE 01
This tag is used to underline text written
between it.
UNDERLINE
3
TITLE 01
This tag is used to highlight text...
HIGHLIGHT
FORMATTING
JAVASCRIPT
CSS
C A S C A D I N G S T Y L E S H E E T
CSS stands for Cascading Style Sheets. It is a style sheet language which is used to
describe the look and formatting of a document written in markup language. It provides an
additional feature to HTML. It is generally used with HTML to change the style of web pages
and user interfaces. It can also be used with any kind of XML documents including plain
XML, SVG and XUL.
CSS is used along with HTML and JavaScript in most websites to create user interfaces for
web applications and user interfaces for many mobile applications.
W H AT I S C S S
CSS
7
W H Y U S E
C S S ?
L E A R N
M O R E
USE OF CSS
These are the three major benefits of CSS:
1) Solves a big problem
Before CSS, tags like font, color, background style, element alignments, border and size has
to be repeated on every web page. This was a very long process. For example: If you are
developing a large website where fonts and color information are added on every single
page, it will be become a long and expensive process. CSS was created to solve this
problem. It was a W3C recommendation.
2) Saves a lot of time
CSS style definitions are saved in external CSS files so it is possible to change the entire
website by changing just one file.
3) Provide more attributes
CSS provides more detailed attributes than plain HTML to define the look and feel of the
website.
7
C S S
S Y N T A X
L E A R N
M O R E
SYNTAX OF CSS
A CSS rule set contains a selector and a declaration block.
Selector: Selector indicates the HTML element you want to style. It could be any tag like
<h1>, <title> etc.
Declaration Block: The declaration block can contain one or more declarations
separated by a semicolon. For the above example, there are two declarations:
1. color: yellow;
2. font-size: 11 px;
Each declaration contains a property name and value, separated by a colon.
Property: A Property is a type of attribute of HTML element. It could be color, border
etc.
Value: Values are assigned to CSS properties. In the above example, value "yellow" is
assigned to color property.
PROGRAM
1. Selector{Property1: value1; Property2: value2; ..........;}
1. <!DOCTYPE html>
2. <html>
3. <head>
4. <style>
5. p{
P R O G R A M
SOME PROGRAMS
<!DOCTYPE html>
<html>
<head>
<title>Form in HTML</title>
</head>
<body>
<h2>Registration form</h2>
<form>
<fieldset>
<legend>User personal information</legend>
<label>Enter your full name</label><br>
<input type="text" name="name"><br>
<label>Enter your email</label><br>
<input type="email" name="email"><br>
<label>Enter your password</label><br>
<input type="password" name="pass"><br>
<label>confirm your password</label><br>
HTML
OUTPUT OF THE PROGRAM
PROGRAM OF
DEFINING A
HTML CLASS
To create an HTML class, firstly define style
for HTML class using <style> tag within
<head> section as following example:
1. <!DOCTYPE html>
2. <html>
3. <head>
4. <style>
5. .headings{
6. color: lightgreen;
7. font-family: cursive;
8. background-color: black; }
9. </style>
10. </head>
11. <body>
12. <h1 class="headings">This is first
heading</h1>
13. <h2 class="headings">This is Second
heading</h2>
14. <h3 class="headings">This is third
heading</h3>
15. <h4 class="headings">This is fourth
heading</h4>
16. </body>
17. </html>
OUTPUT OF DEFINING HTML CLASS
CONCLUSION
Online Result Analysis
System makes entire process
online where there will be
ease of work, ,
ease of storing data, Result
can be accessed by the
students, Better efficiency of
data flow. No
Data loss. It gives ease to the
students to check their result
easily and reduction of paper
work
takes place.

More Related Content

What's hot

Sviluppare giochi per il nuovo windows phone
Sviluppare giochi per il nuovo windows phoneSviluppare giochi per il nuovo windows phone
Sviluppare giochi per il nuovo windows phoneDan Ardelean
 
Web designing (1) - Html Basic Codding
Web designing (1) - Html Basic CoddingWeb designing (1) - Html Basic Codding
Web designing (1) - Html Basic CoddingRabiul robi
 
Creating WebPages using HTML
Creating WebPages using HTMLCreating WebPages using HTML
Creating WebPages using HTMLMohammad Arshad
 
Introduction to XHTML
Introduction to XHTMLIntroduction to XHTML
Introduction to XHTMLHend Al-Khalifa
 
Span and Div tags in HTML
Span and Div tags in HTMLSpan and Div tags in HTML
Span and Div tags in HTMLBiswadip Goswami
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTMLAmit Tyagi
 
Internet and Web Technology (CLASS-3) [HTML & CSS]
Internet and Web Technology (CLASS-3) [HTML & CSS] Internet and Web Technology (CLASS-3) [HTML & CSS]
Internet and Web Technology (CLASS-3) [HTML & CSS] Ayes Chinmay
 
CSS Training in Bangalore
CSS Training in BangaloreCSS Training in Bangalore
CSS Training in Bangalorerajkamal560066
 
Advanced dreamweaver
Advanced dreamweaverAdvanced dreamweaver
Advanced dreamweaverSumit Tambe
 
HTML email design and usability
HTML email design and usabilityHTML email design and usability
HTML email design and usabilityKeith Kmett
 
Introduction to html course digital markerters
Introduction to html course digital markertersIntroduction to html course digital markerters
Introduction to html course digital markertersSEO SKills
 

What's hot (20)

Sviluppare giochi per il nuovo windows phone
Sviluppare giochi per il nuovo windows phoneSviluppare giochi per il nuovo windows phone
Sviluppare giochi per il nuovo windows phone
 
Web designing (1) - Html Basic Codding
Web designing (1) - Html Basic CoddingWeb designing (1) - Html Basic Codding
Web designing (1) - Html Basic Codding
 
XHTML
XHTMLXHTML
XHTML
 
Creating WebPages using HTML
Creating WebPages using HTMLCreating WebPages using HTML
Creating WebPages using HTML
 
Hushang Gaikwad
Hushang GaikwadHushang Gaikwad
Hushang Gaikwad
 
Hyper Text Mark-up Language
Hyper Text Mark-up Language Hyper Text Mark-up Language
Hyper Text Mark-up Language
 
Introduction to XHTML
Introduction to XHTMLIntroduction to XHTML
Introduction to XHTML
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
CSS
CSSCSS
CSS
 
Css mod1
Css mod1Css mod1
Css mod1
 
Span and Div tags in HTML
Span and Div tags in HTMLSpan and Div tags in HTML
Span and Div tags in HTML
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Internet and Web Technology (CLASS-3) [HTML & CSS]
Internet and Web Technology (CLASS-3) [HTML & CSS] Internet and Web Technology (CLASS-3) [HTML & CSS]
Internet and Web Technology (CLASS-3) [HTML & CSS]
 
Html
HtmlHtml
Html
 
CSS Training in Bangalore
CSS Training in BangaloreCSS Training in Bangalore
CSS Training in Bangalore
 
Advanced dreamweaver
Advanced dreamweaverAdvanced dreamweaver
Advanced dreamweaver
 
Nikit.html
Nikit.htmlNikit.html
Nikit.html
 
Html mod1
Html mod1Html mod1
Html mod1
 
HTML email design and usability
HTML email design and usabilityHTML email design and usability
HTML email design and usability
 
Introduction to html course digital markerters
Introduction to html course digital markertersIntroduction to html course digital markerters
Introduction to html course digital markerters
 

Similar to Ppt of web designing

SDP_-_Module_4.ppt
SDP_-_Module_4.pptSDP_-_Module_4.ppt
SDP_-_Module_4.pptssuser568d77
 
WELCOME-FOLKS--CSS.-AND-HTMLS.pptx
WELCOME-FOLKS--CSS.-AND-HTMLS.pptxWELCOME-FOLKS--CSS.-AND-HTMLS.pptx
WELCOME-FOLKS--CSS.-AND-HTMLS.pptxHeroVins
 
Web Development Training Report.docx
Web Development Training Report.docxWeb Development Training Report.docx
Web Development Training Report.docxCuriosityKlinic
 
DSC, html and CSS basics.pptx
DSC, html and CSS basics.pptxDSC, html and CSS basics.pptx
DSC, html and CSS basics.pptxDiffouoFopaEsdras
 
Html tutorials-infotech aus
Html tutorials-infotech ausHtml tutorials-infotech aus
Html tutorials-infotech ausNilesh Pujara
 
introdution-to-html (1).ppt
introdution-to-html (1).pptintrodution-to-html (1).ppt
introdution-to-html (1).pptMarktero2
 
HTML & CSS Workshop Notes
HTML & CSS Workshop NotesHTML & CSS Workshop Notes
HTML & CSS Workshop NotesPamela Fox
 
This is css which compiled by alex that is impo
This is css which compiled by alex that is impoThis is css which compiled by alex that is impo
This is css which compiled by alex that is impoAlebelAyalneh
 
Shyam sunder Rajasthan Computer
Shyam sunder Rajasthan ComputerShyam sunder Rajasthan Computer
Shyam sunder Rajasthan Computershyamverma305
 
Html5 deciphered - designing concepts part 1
Html5 deciphered - designing concepts part 1Html5 deciphered - designing concepts part 1
Html5 deciphered - designing concepts part 1Paxcel Technologies
 
web unit 2_4338494_2023_08_14_23_11.pptx
web unit 2_4338494_2023_08_14_23_11.pptxweb unit 2_4338494_2023_08_14_23_11.pptx
web unit 2_4338494_2023_08_14_23_11.pptxChan24811
 
Markup language classification, designing static and dynamic
Markup language classification, designing static and dynamicMarkup language classification, designing static and dynamic
Markup language classification, designing static and dynamicAnkita Bhalla
 
Introduction to whats new in css3
Introduction to whats new in css3Introduction to whats new in css3
Introduction to whats new in css3Usman Mehmood
 
HTML5 the new applications
HTML5 the new applicationsHTML5 the new applications
HTML5 the new applicationsch1l3no
 
HTML5 The new web applications - Gustavo Delgado R.
HTML5 The new web applications - Gustavo Delgado R.HTML5 The new web applications - Gustavo Delgado R.
HTML5 The new web applications - Gustavo Delgado R.ch1l3no
 
Presentation html
Presentation   htmlPresentation   html
Presentation htmlBilly Tierra
 
Training report on web developing
Training report on web developingTraining report on web developing
Training report on web developingJawhar Ali
 
Advanced Web Programming Chapter 8
Advanced Web Programming Chapter 8Advanced Web Programming Chapter 8
Advanced Web Programming Chapter 8RohanMistry15
 
WT Module-1.pdf
WT Module-1.pdfWT Module-1.pdf
WT Module-1.pdfRamyaH11
 

Similar to Ppt of web designing (20)

SDP_-_Module_4.ppt
SDP_-_Module_4.pptSDP_-_Module_4.ppt
SDP_-_Module_4.ppt
 
WELCOME-FOLKS--CSS.-AND-HTMLS.pptx
WELCOME-FOLKS--CSS.-AND-HTMLS.pptxWELCOME-FOLKS--CSS.-AND-HTMLS.pptx
WELCOME-FOLKS--CSS.-AND-HTMLS.pptx
 
Web Development Training Report.docx
Web Development Training Report.docxWeb Development Training Report.docx
Web Development Training Report.docx
 
DSC, html and CSS basics.pptx
DSC, html and CSS basics.pptxDSC, html and CSS basics.pptx
DSC, html and CSS basics.pptx
 
Html tutorials-infotech aus
Html tutorials-infotech ausHtml tutorials-infotech aus
Html tutorials-infotech aus
 
introdution-to-html (1).ppt
introdution-to-html (1).pptintrodution-to-html (1).ppt
introdution-to-html (1).ppt
 
HTML & CSS Workshop Notes
HTML & CSS Workshop NotesHTML & CSS Workshop Notes
HTML & CSS Workshop Notes
 
This is css which compiled by alex that is impo
This is css which compiled by alex that is impoThis is css which compiled by alex that is impo
This is css which compiled by alex that is impo
 
Shyam sunder Rajasthan Computer
Shyam sunder Rajasthan ComputerShyam sunder Rajasthan Computer
Shyam sunder Rajasthan Computer
 
Html5 deciphered - designing concepts part 1
Html5 deciphered - designing concepts part 1Html5 deciphered - designing concepts part 1
Html5 deciphered - designing concepts part 1
 
web unit 2_4338494_2023_08_14_23_11.pptx
web unit 2_4338494_2023_08_14_23_11.pptxweb unit 2_4338494_2023_08_14_23_11.pptx
web unit 2_4338494_2023_08_14_23_11.pptx
 
Markup language classification, designing static and dynamic
Markup language classification, designing static and dynamicMarkup language classification, designing static and dynamic
Markup language classification, designing static and dynamic
 
Introduction to whats new in css3
Introduction to whats new in css3Introduction to whats new in css3
Introduction to whats new in css3
 
HTML5 the new applications
HTML5 the new applicationsHTML5 the new applications
HTML5 the new applications
 
HTML5 The new web applications - Gustavo Delgado R.
HTML5 The new web applications - Gustavo Delgado R.HTML5 The new web applications - Gustavo Delgado R.
HTML5 The new web applications - Gustavo Delgado R.
 
Presentation html
Presentation   htmlPresentation   html
Presentation html
 
HTML.pptx
HTML.pptxHTML.pptx
HTML.pptx
 
Training report on web developing
Training report on web developingTraining report on web developing
Training report on web developing
 
Advanced Web Programming Chapter 8
Advanced Web Programming Chapter 8Advanced Web Programming Chapter 8
Advanced Web Programming Chapter 8
 
WT Module-1.pdf
WT Module-1.pdfWT Module-1.pdf
WT Module-1.pdf
 

Recently uploaded

Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxsocialsciencegdgrohi
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 

Recently uploaded (20)

Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 

Ppt of web designing

  • 4. tttfdd history history timeline teams services follow In 1989, whilst working at CERN Tim Berners- Lee proposed to create a global hypertext project, which later became known as the World Wide Web During 1991 to 1993 the World Wide Web was born. Text-only pages could be viewed using a simple line-mode Browser. In 1993 Marc Andreessen and Eric Bin, created the Mosaic browser. At the time there were multiple browsers, however the majority of them were Unix-based and naturally text heavy. There had been no integrated approach to graphic design elements such as images or sounds. The Mosaic browser broke this mould. The W3C was created in October 1994 to "lead the World Wide Web to its full potential by developing common protocols that promote its evolution and ensure its interoperability. Throughout 1996 to 1999 the browser wars began, as Microsoft and Netscape fought for ultimate browser dominance. Tim Berners-lee
  • 6. about history timeline teams services follow 1 2 3 TIM BERNER’S LEE PROFESSOR AT THE MASSACHUSSETS INSTITUTE OF TECHNOLOGY Inventor of the World Wide Web MARC ANDREESSEN ERIC J. BIN CO-FOUNDER OF NETSCAPE American software programmer who is the co-creator of MOSIAC CO-AUTHOR OF MOSIAC American entrepre neur and software engineer.
  • 7. about history purpose teams services follow HEADING Web design is important because it impacts how your audience perceives your brand. HEADING HEADING The impression you make on them can either get them to remain on your page and learn about your business . Your design gives them insight as to how you view your audience.
  • 8. about history timeline teams topics follow HTML TAGS : An HTML tag surrounds the content and apply meaning to it. It is written between < and > brackets HTML FORMATTING HTML JAVASCRIPT A Script is a small program which is used with HTML to make web pages more attractive, dynamic and interactive, such as an alert popup window on mouse click. Currently, the most popular scripting language is JavaScript used for websites. HTML CLASSES The HTML class attribute is used to specify a single or multiple class names for an HTML element. The class name can be used by CSS and JavaScript to do some tasks for HTML ELEMENTS HTML CSS CSS stands for Cascading Style Sheets. It is a style sheet language which is used to describe the look and formatting of a document written in Markup language. It provides an additional feature to HTML. HTML ATTRIBUTES An attribute in HTML provides extra information about the element, and it is applied within the start tag. An HTML attribute contains two fields: name & value. HTML Formatting is a process of formatting text for better look and feel. HTML provides us ability to format text with
  • 10. 01 02 03 04 MAIN SYNTAX <element attribute_name="value">content</element> STYLE ATTRIBUTE <p style="height: 50px; color: blue">It will add style property in element</p> TITLE ATTRIBUTE With <h1> tag: 1. <h1 title="This is heading tag">Example of title attribute</h1> With <p> tag: 1. <p title="This is paragraph tag">Move the cursor over the heading and paragrap h, and you will see a description as a tooltip</p> ATTRUBUTES
  • 11. 1 TITLE 01 This is a logical tag, which tells the browser that the text is important. STRONG 2 TITLE 01 This tag is used to underline text written between it. UNDERLINE 3 TITLE 01 This tag is used to highlight text... HIGHLIGHT FORMATTING
  • 13. CSS C A S C A D I N G S T Y L E S H E E T CSS stands for Cascading Style Sheets. It is a style sheet language which is used to describe the look and formatting of a document written in markup language. It provides an additional feature to HTML. It is generally used with HTML to change the style of web pages and user interfaces. It can also be used with any kind of XML documents including plain XML, SVG and XUL. CSS is used along with HTML and JavaScript in most websites to create user interfaces for web applications and user interfaces for many mobile applications. W H AT I S C S S CSS
  • 14. 7 W H Y U S E C S S ? L E A R N M O R E USE OF CSS These are the three major benefits of CSS: 1) Solves a big problem Before CSS, tags like font, color, background style, element alignments, border and size has to be repeated on every web page. This was a very long process. For example: If you are developing a large website where fonts and color information are added on every single page, it will be become a long and expensive process. CSS was created to solve this problem. It was a W3C recommendation. 2) Saves a lot of time CSS style definitions are saved in external CSS files so it is possible to change the entire website by changing just one file. 3) Provide more attributes CSS provides more detailed attributes than plain HTML to define the look and feel of the website.
  • 15. 7 C S S S Y N T A X L E A R N M O R E SYNTAX OF CSS A CSS rule set contains a selector and a declaration block. Selector: Selector indicates the HTML element you want to style. It could be any tag like <h1>, <title> etc. Declaration Block: The declaration block can contain one or more declarations separated by a semicolon. For the above example, there are two declarations: 1. color: yellow; 2. font-size: 11 px; Each declaration contains a property name and value, separated by a colon. Property: A Property is a type of attribute of HTML element. It could be color, border etc. Value: Values are assigned to CSS properties. In the above example, value "yellow" is assigned to color property. PROGRAM 1. Selector{Property1: value1; Property2: value2; ..........;} 1. <!DOCTYPE html> 2. <html> 3. <head> 4. <style> 5. p{ P R O G R A M
  • 16. SOME PROGRAMS <!DOCTYPE html> <html> <head> <title>Form in HTML</title> </head> <body> <h2>Registration form</h2> <form> <fieldset> <legend>User personal information</legend> <label>Enter your full name</label><br> <input type="text" name="name"><br> <label>Enter your email</label><br> <input type="email" name="email"><br> <label>Enter your password</label><br> <input type="password" name="pass"><br> <label>confirm your password</label><br> HTML
  • 17. OUTPUT OF THE PROGRAM
  • 18. PROGRAM OF DEFINING A HTML CLASS To create an HTML class, firstly define style for HTML class using <style> tag within <head> section as following example: 1. <!DOCTYPE html> 2. <html> 3. <head> 4. <style> 5. .headings{ 6. color: lightgreen; 7. font-family: cursive; 8. background-color: black; } 9. </style> 10. </head> 11. <body> 12. <h1 class="headings">This is first heading</h1> 13. <h2 class="headings">This is Second heading</h2> 14. <h3 class="headings">This is third heading</h3> 15. <h4 class="headings">This is fourth heading</h4> 16. </body> 17. </html>
  • 19. OUTPUT OF DEFINING HTML CLASS
  • 20. CONCLUSION Online Result Analysis System makes entire process online where there will be ease of work, , ease of storing data, Result can be accessed by the students, Better efficiency of data flow. No Data loss. It gives ease to the students to check their result easily and reduction of paper work takes place.