SlideShare a Scribd company logo
1 of 44
HTML
FFW
This presentation and its contents are property of FFW.
Miroslav Banov - Open Source Team Leader
Toni Kolev - Quality Assurance Team Leader
FFW
This presentation and its contents are property of FFW.
today’s agenda
01
02
03
04
05
06
07
HTML
HTML terminology
HTML document structure
HTML common elements
Tables
Forms
Section elements
HyperText Markup Language
What is HTML?
HyperText Markup Language
HTML – HyperText Markup Language
● Initial release 1993, 23 years ago
● HTML is used for describing the structure of a website
● not a programming language
● HTML files are usually delivered by HTTP
HTML – Past, Present, Future
1991 – HTML first mentioned – Tim Berners-Lee – HTML tags
1993 – HTML first public version
1993 – HTML 2 draft
1995 – HTML 2 – W3C
1995 – HTML 3 draft
1997 – HTML 3.2 – “Wilbur”
1997 – HTML 4 – ”Cougar” – CSS
1999 – HTML 4.01 (final)
2000 – XHTML draft
2001 – XHTML (final)
2008 – HTML5 / XHTML5 draft
2014 – first release of HTML5
Creating HTML Pages
•An HTML document must have an .htm or .html file extension
•HTML files can be created with text editors:
- Notepad++, GEdit, Sublime Text, WebStorm, …
•Or HTML editors (WYSIWYG Editors):
- Microsoft WebMatrix
- Microsoft Expression Web
- Microsoft Visual Studio
- Adobe Dreamweaver
- Adobe Edge
World Wide Web Consortium
● W3C is the main organization for the World Wide Web.
● Founded by Tim Berners-Lee (founder of WWW)
● Maintainer of both HTML and CSS standards
● 421 members, including Apple, Microsoft, eBay, Amazon, Facebook
HTML Terminology
Tags, Attributes and Elements
HTML Terminology
Concepts in HTML
Tags
opening and closing tag
the smallest piece of HTML
Attributes
properties of the tag, example: size, color, width
Elements
combination of opening, closing tag and attributes
HTML
Tags
•Tags are the smallest piece in HTML Document
- Start with "<" and end with ">"
•Two kinds of tags
- opening - mark the start of an HTML element
- closing - mark the end of an HTML element
Start with "</" and end with ">"
<html>
<body>
<h1>Hello HTML5!</h1>
</body>
</html>
Attributes
Attributes are properties of the HTML elements
● Used to specify size, color, borders, etc…
● Has value surrounded by " " or ' ' (always a string)
<a href="http://google.com">Google</a>
<hr width="95%" size="3px" />
<img src="images/FFW_logo.png" />
Most Common Attributes
• Common attributes for every HTML element
id – assigns a unique element identifier (ID)
class – assigns CSS class to styling
name – assigns a name (for form elements)
style – defines inline CSS style definitions
• Specific attributes for certain elements
- e.g. attribute src of the img element - shows the path to the
image to be shown
HTML Elements
HTML elements are tags with content
opening tag + content + closing tag
<div class=“item”>
<img src=“book.png” />
<span>Books</span>
</div>
HTML Terminology
DEMO
HTML Document Structure
HTML Document, Doctype, Head, Body
HTML Document Structure
Essential elements for each HTML document:
● html
● head
● body
● doctype
The <html> element used to mark the start and the end of the
HTML document. All the content of the web page is inside the tag
<html>
…
</html>
DOCTYPE
The DOCTYPE declaration is kind of a validator of the
page. It tells the browser which version of HTML to use.
HTML 5
<!DOCTYPE html>
HTML 4.01 Strict
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
Head Element
The <head> element contains markup not visible to the
user. But it helps the browser to render correctly the HTML
document. What’s in there?
• Styles declarations
• Scripts declarations
• Encoding specification
• Metadata definitions
• The title tag – the text in the title (tab title) of the browser
Body Element
The <body> element contains the entire visible markup.
What’s in there?
• Headings
• Paragraphs
• Text
• Hyperlinks
• Images
• etc.
HTML Document Structure
DEMO
HTML Common Elements
Used in 90% of all internet sites
Headings and Paragraphs
Heading tags: <h1> - <h6>
<h1>Heading 1</h1>
<h2>Sub heading 2</h2>
<h3>Sub heading 3</h3>
Paragraph tag: <p>
<p>Paragraph 1</p>
<p>Paragraph 2</p>
Text Formatting
The text formatting tags
modify the text inside them.
Ex. <b>Hello</b> makes the
text “Hello” bold
Most of them are deprecated
and text is formatted with
CSS
HTML Element Result
<strong></strong> strong (bold)
<em></em> emphasized
<sub></sub> Samplesubscript
<sup></sup> Samplesuperscript
<b></b> bold
<i></i> italicized
<u></u> underlined
<pre></pre> Preformatted text
Hyperlinks
External hyperlink
<a href=”http://ffwagency.com” title=“FFW”>FFW</a>
The target attribute
<a href=“google.com” target=”_blank”>Google</a>
Images
Images are inserted by the <img> tag
<img src="logo.gif" alt="company logo"
width="150px" height="150px" title="Company Slogan" />
Recommended attributes for all images:
• alt – image alternative text (acts like description)
• title – image description (shown on mouseover)
• width, height – the image size
Unordered List: <ul> tag
Create an Unordered List by using <ul></ul>
<ul type="disc">
<li>Java</li>
<li>PHP</li>
<li>C++</li>
</ul>
Attribute values for type are disc, circle, square
o Java
o PHP
o C++
• Java
• PHP
• C++
▪ Java
▪ PHP
▪ C++
Ordered List: <ol> tag
Create an Ordered List by using <ol></ol>
<ol type="1">
<li>Java</li>
<li>PHP</li>
<li>C++</li>
</ol>
Attribute values for type are 1, A, a, I and i
1.Java
2.PHP
3.C++
a. Java
b. PHP
c. C++
A.Java
B.PHP
C.C++
I. Java
II. PHP
III. C++
i. Java
ii. PHP
iii. C++
HTML Common Elements
DEMO
HTML tables
Tables, Rows, Data, Headings
HTML Tables
• Tables represent tabular data
A table consists of one or several rows
Each row has one or more columns
• Tables comprised of several core tags:
<table></table>: begin / end the table
<tr></tr>: create a table row
<td></td>: create tabular data (cell)
• Tables should not be used for layout
Use CSS floats and positioning styles instead
HTML tables
DEMO
Forms
Forms, Controls, Fields, Inputs,
Submission, Validation
Forms
● HTML forms are used to collect user input
● The <form> tag is used to define form element
● Forms are composed by form elements and form inputs
Form Elements
●input - the most important element, it may vary in
many ways depending on the type attribute
●select
●textarea
Form Input Types
●text
●password
●submit
●radio
●checkbox
●button
●and more
Forms
DEMO
Section Elements
<div> and <span>
The <div> tag
<div> creates logical divisions within a page
<div style="font-size:24px; color:red">DIV
example</div>
<p>This one is <span style="color:red;
font-weight:bold">only a test</span>.</p>
• Block element (rendered as rectangle)
• Typically used with CSS classes
• <div>s can be nested as blocks
The <span> tag
<span> creates inline styling element
<p>This one is <span style="color:red; font-weight:bold">only
a test</span>.</p>
<p>This one is another <span style="font-size:32px; font-
weight:bold">TEST</span>.</p>
• Useful for modifying a specific portion of text
• Inline element -> doesn’t create a separate
area (paragraph) in the document
• Used to style pieces of text.
Section Elements
DEMO
HTML Tips and Practices
•Have the correct vision and attitude towards HTML
- HTML is only about structure, not appearance
- Browsers tolerate invalid HTML code and parse errors
- You should always write correct HTML
- Format your HTML code
- Always think about semantics
•The W3C HTML Validator is a way to validate your HTML -
http://validator.w3.org
•How well does your browser support html5? -
https://html5test.com/
HTML
HTML

More Related Content

What's hot (20)

Html
HtmlHtml
Html
 
Intr to-html-xhtml-1233508169541646-3
Intr to-html-xhtml-1233508169541646-3Intr to-html-xhtml-1233508169541646-3
Intr to-html-xhtml-1233508169541646-3
 
Html 5
Html 5Html 5
Html 5
 
Html tables
Html tablesHtml tables
Html tables
 
Elements of html powerpoint
Elements of html powerpointElements of html powerpoint
Elements of html powerpoint
 
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
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Html 5
Html 5Html 5
Html 5
 
Web Page Designing Using HTML
Web Page Designing Using HTMLWeb Page Designing Using HTML
Web Page Designing Using HTML
 
Design Tools Html Xhtml
Design Tools Html XhtmlDesign Tools Html Xhtml
Design Tools Html Xhtml
 
HTML basics
HTML basicsHTML basics
HTML basics
 
HTML
HTMLHTML
HTML
 
1. HTML
1. HTML1. HTML
1. HTML
 
Chapter 6 html
Chapter 6 htmlChapter 6 html
Chapter 6 html
 
Cascading style sheet
Cascading style sheetCascading style sheet
Cascading style sheet
 
Html project
Html projectHtml project
Html project
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Web Development using HTML & CSS
Web Development using HTML & CSSWeb Development using HTML & CSS
Web Development using HTML & CSS
 
Html Basic Tags
Html Basic TagsHtml Basic Tags
Html Basic Tags
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 

Viewers also liked

สมรรถนะนักวิชาชีพในสาขาบรรณารักษศาสตร์และสารสนเทศศาสตร์ โดย นายราม ป้อมทอง
สมรรถนะนักวิชาชีพในสาขาบรรณารักษศาสตร์และสารสนเทศศาสตร์ โดย นายราม ป้อมทองสมรรถนะนักวิชาชีพในสาขาบรรณารักษศาสตร์และสารสนเทศศาสตร์ โดย นายราม ป้อมทอง
สมรรถนะนักวิชาชีพในสาขาบรรณารักษศาสตร์และสารสนเทศศาสตร์ โดย นายราม ป้อมทองAssociation of Thai Information Science Education
 
Diseña y administra Base de Datos Avanzada
Diseña y administra Base de Datos AvanzadaDiseña y administra Base de Datos Avanzada
Diseña y administra Base de Datos AvanzadaSaul Rz
 
สมรรถนะนักวิชาชีพในสาขาบรรณารักษศาสตร์และสารสนเทศศาสตร์ โดย รศ.ดร.ยุพิน เตชะมณี
สมรรถนะนักวิชาชีพในสาขาบรรณารักษศาสตร์และสารสนเทศศาสตร์ โดย รศ.ดร.ยุพิน เตชะมณีสมรรถนะนักวิชาชีพในสาขาบรรณารักษศาสตร์และสารสนเทศศาสตร์ โดย รศ.ดร.ยุพิน เตชะมณี
สมรรถนะนักวิชาชีพในสาขาบรรณารักษศาสตร์และสารสนเทศศาสตร์ โดย รศ.ดร.ยุพิน เตชะมณีAssociation of Thai Information Science Education
 
Beyond_the_Flange_Reprint_ACHRtheNews_Feb2012
Beyond_the_Flange_Reprint_ACHRtheNews_Feb2012Beyond_the_Flange_Reprint_ACHRtheNews_Feb2012
Beyond_the_Flange_Reprint_ACHRtheNews_Feb2012Robert A. Preston
 
Sindaci a Confronto all'Università di salerno
Sindaci a Confronto all'Università di salernoSindaci a Confronto all'Università di salerno
Sindaci a Confronto all'Università di salernomimmoannunziata
 
Lease-Desk Lite
Lease-Desk LiteLease-Desk Lite
Lease-Desk Litecwhitbread
 
Practica 29 ciencias i
Practica 29 ciencias iPractica 29 ciencias i
Practica 29 ciencias iDaniel Lopez
 
Manual para divulgação e uso de informações e política de negociação
Manual para divulgação e uso de informações e política de negociaçãoManual para divulgação e uso de informações e política de negociação
Manual para divulgação e uso de informações e política de negociaçãoGafisa RI !
 
Efs02 checked
Efs02 checkedEfs02 checked
Efs02 checkedarsisto
 
Preserfood tm milk & fruit 2
Preserfood tm milk & fruit 2Preserfood tm milk & fruit 2
Preserfood tm milk & fruit 2ND PHARMA BIOTECH
 

Viewers also liked (17)

สมรรถนะนักวิชาชีพในสาขาบรรณารักษศาสตร์และสารสนเทศศาสตร์ โดย นายราม ป้อมทอง
สมรรถนะนักวิชาชีพในสาขาบรรณารักษศาสตร์และสารสนเทศศาสตร์ โดย นายราม ป้อมทองสมรรถนะนักวิชาชีพในสาขาบรรณารักษศาสตร์และสารสนเทศศาสตร์ โดย นายราม ป้อมทอง
สมรรถนะนักวิชาชีพในสาขาบรรณารักษศาสตร์และสารสนเทศศาสตร์ โดย นายราม ป้อมทอง
 
Diseña y administra Base de Datos Avanzada
Diseña y administra Base de Datos AvanzadaDiseña y administra Base de Datos Avanzada
Diseña y administra Base de Datos Avanzada
 
สมรรถนะนักวิชาชีพในสาขาบรรณารักษศาสตร์และสารสนเทศศาสตร์ โดย รศ.ดร.ยุพิน เตชะมณี
สมรรถนะนักวิชาชีพในสาขาบรรณารักษศาสตร์และสารสนเทศศาสตร์ โดย รศ.ดร.ยุพิน เตชะมณีสมรรถนะนักวิชาชีพในสาขาบรรณารักษศาสตร์และสารสนเทศศาสตร์ โดย รศ.ดร.ยุพิน เตชะมณี
สมรรถนะนักวิชาชีพในสาขาบรรณารักษศาสตร์และสารสนเทศศาสตร์ โดย รศ.ดร.ยุพิน เตชะมณี
 
Esri mobiel gis overview
Esri mobiel gis overviewEsri mobiel gis overview
Esri mobiel gis overview
 
Ecoescuela 2011
Ecoescuela 2011Ecoescuela 2011
Ecoescuela 2011
 
Beyond_the_Flange_Reprint_ACHRtheNews_Feb2012
Beyond_the_Flange_Reprint_ACHRtheNews_Feb2012Beyond_the_Flange_Reprint_ACHRtheNews_Feb2012
Beyond_the_Flange_Reprint_ACHRtheNews_Feb2012
 
Sindaci a Confronto all'Università di salerno
Sindaci a Confronto all'Università di salernoSindaci a Confronto all'Università di salerno
Sindaci a Confronto all'Università di salerno
 
Lease-Desk Lite
Lease-Desk LiteLease-Desk Lite
Lease-Desk Lite
 
X men
X menX men
X men
 
Presentation12
Presentation12Presentation12
Presentation12
 
Practica 29 ciencias i
Practica 29 ciencias iPractica 29 ciencias i
Practica 29 ciencias i
 
Manual para divulgação e uso de informações e política de negociação
Manual para divulgação e uso de informações e política de negociaçãoManual para divulgação e uso de informações e política de negociação
Manual para divulgação e uso de informações e política de negociação
 
Caráatula.docx
 Caráatula.docx  Caráatula.docx
Caráatula.docx
 
Efs02 checked
Efs02 checkedEfs02 checked
Efs02 checked
 
Preserfood tm milk & fruit 2
Preserfood tm milk & fruit 2Preserfood tm milk & fruit 2
Preserfood tm milk & fruit 2
 
Estructura curso
Estructura cursoEstructura curso
Estructura curso
 
WES EVALUATION SERGIO RIVERA GUASCO
WES EVALUATION SERGIO RIVERA GUASCOWES EVALUATION SERGIO RIVERA GUASCO
WES EVALUATION SERGIO RIVERA GUASCO
 

Similar to HTML

Similar to HTML (20)

FFW Gabrovo PMG - HTML
FFW Gabrovo PMG - HTMLFFW Gabrovo PMG - HTML
FFW Gabrovo PMG - HTML
 
HTML & CSS.ppt
HTML & CSS.pptHTML & CSS.ppt
HTML & CSS.ppt
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Html
HtmlHtml
Html
 
HTML Comprehensive Overview
HTML Comprehensive OverviewHTML Comprehensive Overview
HTML Comprehensive Overview
 
Html5 css3
Html5 css3Html5 css3
Html5 css3
 
introduction-to-html hyper text markup .ppt
introduction-to-html hyper text markup  .pptintroduction-to-html hyper text markup  .ppt
introduction-to-html hyper text markup .ppt
 
Web technologies-course 02.pptx
Web technologies-course 02.pptxWeb technologies-course 02.pptx
Web technologies-course 02.pptx
 
BITM3730Week1.pptx
BITM3730Week1.pptxBITM3730Week1.pptx
BITM3730Week1.pptx
 
Html (1)
Html (1)Html (1)
Html (1)
 
Html introduction
Html introductionHtml introduction
Html introduction
 
Html starting
Html startingHtml starting
Html starting
 
INTRODUCTION FOR HTML
INTRODUCTION  FOR HTML INTRODUCTION  FOR HTML
INTRODUCTION FOR HTML
 
HTML - LinkedIn
HTML - LinkedInHTML - LinkedIn
HTML - LinkedIn
 
Intro to html revised2
Intro to html revised2Intro to html revised2
Intro to html revised2
 
web development.pdf
web development.pdfweb development.pdf
web development.pdf
 
Learn html Basics
Learn html BasicsLearn html Basics
Learn html Basics
 
Lecture 2 introduction to html
Lecture 2  introduction to htmlLecture 2  introduction to html
Lecture 2 introduction to html
 
Html tutorials by www.dmdiploma.com
Html tutorials by www.dmdiploma.comHtml tutorials by www.dmdiploma.com
Html tutorials by www.dmdiploma.com
 
Eye catching HTML BASICS tips: Learn easily
Eye catching HTML BASICS tips: Learn easilyEye catching HTML BASICS tips: Learn easily
Eye catching HTML BASICS tips: Learn easily
 

Recently uploaded

Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts servicesonalikaur4
 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...tanu pandey
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebJames Anderson
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Networking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOGNetworking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOGAPNIC
 
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Servicesexy call girls service in goa
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Delhi Call girls
 
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Challengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya Shirtrahman018755
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersDamian Radcliffe
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024APNIC
 
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls KolkataVIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...APNIC
 
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With RoomVIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Roomgirls4nights
 
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.soniya singh
 
Radiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girlsRadiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girlsstephieert
 

Recently uploaded (20)

Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
 
Networking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOGNetworking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOG
 
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
 
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
 
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Challengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya Shirt
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024
 
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls KolkataVIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
 
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With RoomVIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
 
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
 
Radiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girlsRadiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girls
 

HTML

  • 1. HTML FFW This presentation and its contents are property of FFW.
  • 2. Miroslav Banov - Open Source Team Leader Toni Kolev - Quality Assurance Team Leader FFW This presentation and its contents are property of FFW.
  • 3. today’s agenda 01 02 03 04 05 06 07 HTML HTML terminology HTML document structure HTML common elements Tables Forms Section elements
  • 5. HyperText Markup Language HTML – HyperText Markup Language ● Initial release 1993, 23 years ago ● HTML is used for describing the structure of a website ● not a programming language ● HTML files are usually delivered by HTTP
  • 6. HTML – Past, Present, Future 1991 – HTML first mentioned – Tim Berners-Lee – HTML tags 1993 – HTML first public version 1993 – HTML 2 draft 1995 – HTML 2 – W3C 1995 – HTML 3 draft 1997 – HTML 3.2 – “Wilbur” 1997 – HTML 4 – ”Cougar” – CSS 1999 – HTML 4.01 (final) 2000 – XHTML draft 2001 – XHTML (final) 2008 – HTML5 / XHTML5 draft 2014 – first release of HTML5
  • 7. Creating HTML Pages •An HTML document must have an .htm or .html file extension •HTML files can be created with text editors: - Notepad++, GEdit, Sublime Text, WebStorm, … •Or HTML editors (WYSIWYG Editors): - Microsoft WebMatrix - Microsoft Expression Web - Microsoft Visual Studio - Adobe Dreamweaver - Adobe Edge
  • 8. World Wide Web Consortium ● W3C is the main organization for the World Wide Web. ● Founded by Tim Berners-Lee (founder of WWW) ● Maintainer of both HTML and CSS standards ● 421 members, including Apple, Microsoft, eBay, Amazon, Facebook
  • 10. HTML Terminology Concepts in HTML Tags opening and closing tag the smallest piece of HTML Attributes properties of the tag, example: size, color, width Elements combination of opening, closing tag and attributes
  • 11. HTML Tags •Tags are the smallest piece in HTML Document - Start with "<" and end with ">" •Two kinds of tags - opening - mark the start of an HTML element - closing - mark the end of an HTML element Start with "</" and end with ">" <html> <body> <h1>Hello HTML5!</h1> </body> </html>
  • 12. Attributes Attributes are properties of the HTML elements ● Used to specify size, color, borders, etc… ● Has value surrounded by " " or ' ' (always a string) <a href="http://google.com">Google</a> <hr width="95%" size="3px" /> <img src="images/FFW_logo.png" />
  • 13. Most Common Attributes • Common attributes for every HTML element id – assigns a unique element identifier (ID) class – assigns CSS class to styling name – assigns a name (for form elements) style – defines inline CSS style definitions • Specific attributes for certain elements - e.g. attribute src of the img element - shows the path to the image to be shown
  • 14. HTML Elements HTML elements are tags with content opening tag + content + closing tag <div class=“item”> <img src=“book.png” /> <span>Books</span> </div>
  • 16. HTML Document Structure HTML Document, Doctype, Head, Body
  • 17. HTML Document Structure Essential elements for each HTML document: ● html ● head ● body ● doctype The <html> element used to mark the start and the end of the HTML document. All the content of the web page is inside the tag <html> … </html>
  • 18. DOCTYPE The DOCTYPE declaration is kind of a validator of the page. It tells the browser which version of HTML to use. HTML 5 <!DOCTYPE html> HTML 4.01 Strict <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  • 19. Head Element The <head> element contains markup not visible to the user. But it helps the browser to render correctly the HTML document. What’s in there? • Styles declarations • Scripts declarations • Encoding specification • Metadata definitions • The title tag – the text in the title (tab title) of the browser
  • 20. Body Element The <body> element contains the entire visible markup. What’s in there? • Headings • Paragraphs • Text • Hyperlinks • Images • etc.
  • 22. HTML Common Elements Used in 90% of all internet sites
  • 23. Headings and Paragraphs Heading tags: <h1> - <h6> <h1>Heading 1</h1> <h2>Sub heading 2</h2> <h3>Sub heading 3</h3> Paragraph tag: <p> <p>Paragraph 1</p> <p>Paragraph 2</p>
  • 24. Text Formatting The text formatting tags modify the text inside them. Ex. <b>Hello</b> makes the text “Hello” bold Most of them are deprecated and text is formatted with CSS HTML Element Result <strong></strong> strong (bold) <em></em> emphasized <sub></sub> Samplesubscript <sup></sup> Samplesuperscript <b></b> bold <i></i> italicized <u></u> underlined <pre></pre> Preformatted text
  • 25. Hyperlinks External hyperlink <a href=”http://ffwagency.com” title=“FFW”>FFW</a> The target attribute <a href=“google.com” target=”_blank”>Google</a>
  • 26. Images Images are inserted by the <img> tag <img src="logo.gif" alt="company logo" width="150px" height="150px" title="Company Slogan" /> Recommended attributes for all images: • alt – image alternative text (acts like description) • title – image description (shown on mouseover) • width, height – the image size
  • 27. Unordered List: <ul> tag Create an Unordered List by using <ul></ul> <ul type="disc"> <li>Java</li> <li>PHP</li> <li>C++</li> </ul> Attribute values for type are disc, circle, square o Java o PHP o C++ • Java • PHP • C++ ▪ Java ▪ PHP ▪ C++
  • 28. Ordered List: <ol> tag Create an Ordered List by using <ol></ol> <ol type="1"> <li>Java</li> <li>PHP</li> <li>C++</li> </ol> Attribute values for type are 1, A, a, I and i 1.Java 2.PHP 3.C++ a. Java b. PHP c. C++ A.Java B.PHP C.C++ I. Java II. PHP III. C++ i. Java ii. PHP iii. C++
  • 30. HTML tables Tables, Rows, Data, Headings
  • 31. HTML Tables • Tables represent tabular data A table consists of one or several rows Each row has one or more columns • Tables comprised of several core tags: <table></table>: begin / end the table <tr></tr>: create a table row <td></td>: create tabular data (cell) • Tables should not be used for layout Use CSS floats and positioning styles instead
  • 33. Forms Forms, Controls, Fields, Inputs, Submission, Validation
  • 34. Forms ● HTML forms are used to collect user input ● The <form> tag is used to define form element ● Forms are composed by form elements and form inputs
  • 35. Form Elements ●input - the most important element, it may vary in many ways depending on the type attribute ●select ●textarea
  • 39. The <div> tag <div> creates logical divisions within a page <div style="font-size:24px; color:red">DIV example</div> <p>This one is <span style="color:red; font-weight:bold">only a test</span>.</p> • Block element (rendered as rectangle) • Typically used with CSS classes • <div>s can be nested as blocks
  • 40. The <span> tag <span> creates inline styling element <p>This one is <span style="color:red; font-weight:bold">only a test</span>.</p> <p>This one is another <span style="font-size:32px; font- weight:bold">TEST</span>.</p> • Useful for modifying a specific portion of text • Inline element -> doesn’t create a separate area (paragraph) in the document • Used to style pieces of text.
  • 42. HTML Tips and Practices •Have the correct vision and attitude towards HTML - HTML is only about structure, not appearance - Browsers tolerate invalid HTML code and parse errors - You should always write correct HTML - Format your HTML code - Always think about semantics •The W3C HTML Validator is a way to validate your HTML - http://validator.w3.org •How well does your browser support html5? - https://html5test.com/