SlideShare a Scribd company logo
HTML Tutorial Topic 3
Prevoiusly we Learned Basic HTML Elements and
Tables.
Now Lets Start Topic 3
Topics
Today I Cover This All Topics
● List
● Blocks
● Classes and id
● Iframes
● Some Useful Tips
List
List – list as we know it contains list of item in
ordered or unordered.
Example
Unordered List
● Apple
● Mango
● Guava
● Orange
Ordered List
1.Apple
2.Mango
3.Guava
4.Orange
5.Banana
List
We Can Create Easily List in HTML By Using
<ul> - for unorder list
<ol> - for ordered list.
<li> is a nested Element Which Comes Inside
Both in ul and ol for list Items.
E.g - <ul><li>First Item</li></ul>
List
We Can Customize List Item Easily Like Ordered List in
Roman no. Format or Unordered List Item in square type
items.
For Ordered List
We Use Attribute type=”value”
Where Values is
1 = For Number List Items
A= For uppercase Numbered List Item
a= For Lowercase Numbered
I = For Uppercase Roman Numbered
i = For Lowercase Roman Numbered
For UnOrdered List
We Use CSS style=”list-style:values”
Where Values is
circle = For Circle Number List Items
disc = For disc Numbered List Item
square = For Square Numbered
none = For Simply Print item without
Bullets
List
List Example HTML
<!DOCTYPE html>
<html>
<head>
<title>List</title>
</head>
<body>
<p>Unordered List</p>
<ul>
<li>Mango</li>
<li>Guava</li>
<li>Orange</li>
<li>Apple</li>
<li>Banana</li>
</ul>
<p>Ordered List</p>
<ol>
<li>Carrot</li>
<li>Onion</li>
<li>Potato</li>
<li>Tomato</li>
<li>Cabbage</li>
</ol>
</body>
</html>
Browser View
Block and Inline Elements
Block Elements – Block elements are such
elements that stretch full width under body and
start with new line.
E.g : <div>,<article>
Inline Elements – Inline Elements are such which
does not takes full width cover only small part that
it needs.
E.g : <span>,<button>
Block and Inline Elements
Simple Example
Block Elements Example
<html>
<body>
<div style=”padding:2px;border:1px solid red;margin-bottom: 10px;”>
I am A Block Element, I used Border So it Clearly Show Much It Takes Width,
Padding For items don’t touch the Div Border and Margin bottom So i dont Touch
the Span
</div>
<span style=”border:1px solid red;padding:2px”>
I am a inline with border and (Padding so i dont Touch the Border Of Span
</span>
</body>
</html>
Result :
Block and Inline Elements
Some List Of Block Elements
<div>
<article>
<section>
<header>
<footer>
<main>
<aside>
<form>
<ul>
<ol>
<p>
<pre>
<section>
<table>
<li>
<h1>-<h6>
Some List Of Inline Elements
<a>
<button>
<input>
<span>
<select>
<textarea>
<i>
<time>
<img>
<small>
Class and id
Since, We use class and id for select elements in our webpage by using
javascript or css.
We can declare multiple elements in our web page but if we declare
multiple then css select the multiple multiple id but js does not select it.
Id is always unique.
We can use multiple class value in element but not in id
E.g <span class=”first second”>
We select class by using (.) dot and (#) for id.
E.g for id – botton#myfirstid{ color:red }
#myfirstid{ color:red } both is same but in upper it select only button
elements.
For class – button.myfirstclass{ color:yellow }
.myfirstclass { color:yellow } both is same but first one select only input
elements
Class and id
Simple selecting element in css
<html>
<head><style type="text/css">
div.firstclass{ background: red; }
div.secondclass{ color:white; }
div#firstid{ background: grey; color: black; }
</style></head>
<body>
<div class="firstclass">
i am a div which is selected and controlled by css
</div><span>
css not select me because my class is same but i am a span element
</span><div id="firstid">
css control me by my id and element
</div><span id="firstid">
css not control me by my id and element because i am span element
</span><div class="firstclass secondclass">
i a muti class element so firstclass and secondclass both select me
</div>
</body>
</html>
Iframes
Iframes is used to display a embeded webpage in your current
webpage just like adding other webpages or other website.
●
E.g – we see embed youtube in many sites.
Code : - <iframe src=”http://sswebtricks.blogspot.in/”
width=”100%” height=”400px”>
Iframes
Lets Create a iframe
<!DOCTYPE html>
<html>
<head>
<title>Iframe</title>
</head>
<body>
<iframe src="http://sswebtricks.blogspot.in/"
width="100%" height="600px"></iframe>
</body>
</html>
Browser View
Some Useful Tips
● For Reloading Webpages after some seconds we use.
<meta http-equiv="refresh" content="30">
where content= seconds
use this code inside every meta tag comes inside head tag
● For Zoom View in Mobile Device or Creating Responsive (i cover this in css)
web page we use.
<meta name="viewport" content="width=device-width, initial-scale=1.0">
● For writing computer codes or special codes like html in simple,programing
language which print in programatic from we use <pre> tag
Note : this will not execute in web page it just display codes in programatic
form.
<pre>Your Codes</pre>
● A simple Layout Of Webpage lets create it.
Simple Web Page
<!DOCTYPE html>
<html>
<head>
<title>Simple layout</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>Welcome To SuperCoders</header>
<nav>
<a href="#">Home</a>
<a href="#">Post</a>
<a href="#">Signup</a>
</nav>
<aside>
<p>I m a sidebar where some notification comes</p>
</aside>
<main>
<section>
<h2>What is Lorem Ipsum?</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard
dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen
book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was
popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop
publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</section>
</main>
<footer>
&copy; SuperCoders 2018
</footer>
</body>
</html>
Simple Web Page
Style.css
body{
margin:0px;
padding: 0px;
}
header{
padding: 10px;
background: orange;
}
aside{
background: tomato;
width: 18%;
padding: 10px;
float: left;
height: 400px;
}
main{
background: red;
width: 78%;
padding: 10px;
float:left;
height: 400px;
}
footer{
text-align: center;
clear: both;
color: white;
background: green;
padding: 10px;
}
nav{
background: pink;
padding: 10px;
}
nav a{
background: yellow;
padding: 5px;
margin: 5px;
}
Simple Web Page
Output
Ad

Recommended

HTML 5 Simple Tutorial Part 4
HTML 5 Simple Tutorial Part 4
Sanjeev Kumar
 
Html,javascript & css
Html,javascript & css
Predhin Sapru
 
HTML/CSS/java Script/Jquery
HTML/CSS/java Script/Jquery
FAKHRUN NISHA
 
php 1
php 1
tumetr1
 
html
html
tumetr1
 
HTML Lists & Llinks
HTML Lists & Llinks
Nisa Soomro
 
Web Design Course: CSS lecture 2
Web Design Course: CSS lecture 2
Gheyath M. Othman
 
A quick guide to Css and java script
A quick guide to Css and java script
AVINASH KUMAR
 
Html Guide
Html Guide
Jspider - Noida
 
DIWE - Coding HTML for Basic Web Designing
DIWE - Coding HTML for Basic Web Designing
Rasan Samarasinghe
 
HTML presentation for beginners
HTML presentation for beginners
jeroenvdmeer
 
HTML, CSS And JAVASCRIPT!
HTML, CSS And JAVASCRIPT!
Syahmi RH
 
Web Design Course: CSS lecture 4
Web Design Course: CSS lecture 4
Gheyath M. Othman
 
Getting Information through HTML Forms
Getting Information through HTML Forms
Mike Crabb
 
Web Design Course: CSS lecture 5
Web Design Course: CSS lecture 5
Gheyath M. Othman
 
Html 5 Forms
Html 5 Forms
Jim Gerland
 
Web Engineering - Introduction to CSS
Web Engineering - Introduction to CSS
Nosheen Qamar
 
Intro to HTML and CSS basics
Intro to HTML and CSS basics
Eliran Eliassy
 
Web Design Course: CSS lecture 3
Web Design Course: CSS lecture 3
Gheyath M. Othman
 
Creating Web Sites with HTML and CSS
Creating Web Sites with HTML and CSS
BG Java EE Course
 
HTML5 Web Forms
HTML5 Web Forms
Estelle Weyl
 
Html JavaScript and CSS
Html JavaScript and CSS
Radhe Krishna Rajan
 
Cascading Style Sheets - Part 01
Cascading Style Sheets - Part 01
Hatem Mahmoud
 
HTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts Basics
Sun Technlogies
 
HTML Lecture Part 1 of 2
HTML Lecture Part 1 of 2
Sharon Wasden
 
Haml. New HTML? (RU)
Haml. New HTML? (RU)
Kirill Zonov
 
Introduction to HTML
Introduction to HTML
Seble Nigussie
 
Html5, a gentle introduction
Html5, a gentle introduction
Diego Scataglini
 
Html 5, a gentle introduction
Html 5, a gentle introduction
Diego Scataglini
 
Introduction to HTML.pptx
Introduction to HTML.pptx
malrad1
 

More Related Content

What's hot (18)

Html Guide
Html Guide
Jspider - Noida
 
DIWE - Coding HTML for Basic Web Designing
DIWE - Coding HTML for Basic Web Designing
Rasan Samarasinghe
 
HTML presentation for beginners
HTML presentation for beginners
jeroenvdmeer
 
HTML, CSS And JAVASCRIPT!
HTML, CSS And JAVASCRIPT!
Syahmi RH
 
Web Design Course: CSS lecture 4
Web Design Course: CSS lecture 4
Gheyath M. Othman
 
Getting Information through HTML Forms
Getting Information through HTML Forms
Mike Crabb
 
Web Design Course: CSS lecture 5
Web Design Course: CSS lecture 5
Gheyath M. Othman
 
Html 5 Forms
Html 5 Forms
Jim Gerland
 
Web Engineering - Introduction to CSS
Web Engineering - Introduction to CSS
Nosheen Qamar
 
Intro to HTML and CSS basics
Intro to HTML and CSS basics
Eliran Eliassy
 
Web Design Course: CSS lecture 3
Web Design Course: CSS lecture 3
Gheyath M. Othman
 
Creating Web Sites with HTML and CSS
Creating Web Sites with HTML and CSS
BG Java EE Course
 
HTML5 Web Forms
HTML5 Web Forms
Estelle Weyl
 
Html JavaScript and CSS
Html JavaScript and CSS
Radhe Krishna Rajan
 
Cascading Style Sheets - Part 01
Cascading Style Sheets - Part 01
Hatem Mahmoud
 
HTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts Basics
Sun Technlogies
 
HTML Lecture Part 1 of 2
HTML Lecture Part 1 of 2
Sharon Wasden
 
Haml. New HTML? (RU)
Haml. New HTML? (RU)
Kirill Zonov
 
DIWE - Coding HTML for Basic Web Designing
DIWE - Coding HTML for Basic Web Designing
Rasan Samarasinghe
 
HTML presentation for beginners
HTML presentation for beginners
jeroenvdmeer
 
HTML, CSS And JAVASCRIPT!
HTML, CSS And JAVASCRIPT!
Syahmi RH
 
Web Design Course: CSS lecture 4
Web Design Course: CSS lecture 4
Gheyath M. Othman
 
Getting Information through HTML Forms
Getting Information through HTML Forms
Mike Crabb
 
Web Design Course: CSS lecture 5
Web Design Course: CSS lecture 5
Gheyath M. Othman
 
Web Engineering - Introduction to CSS
Web Engineering - Introduction to CSS
Nosheen Qamar
 
Intro to HTML and CSS basics
Intro to HTML and CSS basics
Eliran Eliassy
 
Web Design Course: CSS lecture 3
Web Design Course: CSS lecture 3
Gheyath M. Othman
 
Creating Web Sites with HTML and CSS
Creating Web Sites with HTML and CSS
BG Java EE Course
 
Cascading Style Sheets - Part 01
Cascading Style Sheets - Part 01
Hatem Mahmoud
 
HTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts Basics
Sun Technlogies
 
HTML Lecture Part 1 of 2
HTML Lecture Part 1 of 2
Sharon Wasden
 
Haml. New HTML? (RU)
Haml. New HTML? (RU)
Kirill Zonov
 

Similar to HTML 5 Simple Tutorial Part 3 (20)

Introduction to HTML
Introduction to HTML
Seble Nigussie
 
Html5, a gentle introduction
Html5, a gentle introduction
Diego Scataglini
 
Html 5, a gentle introduction
Html 5, a gentle introduction
Diego Scataglini
 
Introduction to HTML.pptx
Introduction to HTML.pptx
malrad1
 
1. Advanced Web Designing (12th IT) (1).pdf
1. Advanced Web Designing (12th IT) (1).pdf
AAFREEN SHAIKH
 
Introduction to Web Development.pptx
Introduction to Web Development.pptx
Alisha Kamat
 
Introduction to Web Development.pptx
Introduction to Web Development.pptx
GDSCVJTI
 
Introduction to Web Development.pptx
Introduction to Web Development.pptx
Alisha Kamat
 
Unit 2 Internet and web technology CSS report
Unit 2 Internet and web technology CSS report
ajaysahusistec
 
introduction to html and css html1.ppt
introduction to html and css html1.ppt
SherifElGohary7
 
Converted-bffbudurururyryrydgsjdjsusussj
Converted-bffbudurururyryrydgsjdjsusussj
vallichandran1302
 
html1 (2).ppt html are very simple markup language
html1 (2).ppt html are very simple markup language
chauhanak1200
 
NEW HTML POINTS AND HTML BASICS WITH NEW TOPICS
NEW HTML POINTS AND HTML BASICS WITH NEW TOPICS
demomki4
 
Introduction to HTML
Introduction to HTML
Professional Guru
 
Web development (html)
Web development (html)
AliNaqvi131
 
Class 1 handout (2) html exercises
Class 1 handout (2) html exercises
Erin M. Kidwell
 
PHP HTML CSS Notes
PHP HTML CSS Notes
Tushar Rajput
 
Angular JS
Angular JS
John Temoty Roca
 
wd project.pptx
wd project.pptx
dsffsdf1
 
HTML Notes And Some Attributes
HTML Notes And Some Attributes
HIFZUR RAHMAN
 
Html5, a gentle introduction
Html5, a gentle introduction
Diego Scataglini
 
Html 5, a gentle introduction
Html 5, a gentle introduction
Diego Scataglini
 
Introduction to HTML.pptx
Introduction to HTML.pptx
malrad1
 
1. Advanced Web Designing (12th IT) (1).pdf
1. Advanced Web Designing (12th IT) (1).pdf
AAFREEN SHAIKH
 
Introduction to Web Development.pptx
Introduction to Web Development.pptx
Alisha Kamat
 
Introduction to Web Development.pptx
Introduction to Web Development.pptx
GDSCVJTI
 
Introduction to Web Development.pptx
Introduction to Web Development.pptx
Alisha Kamat
 
Unit 2 Internet and web technology CSS report
Unit 2 Internet and web technology CSS report
ajaysahusistec
 
introduction to html and css html1.ppt
introduction to html and css html1.ppt
SherifElGohary7
 
Converted-bffbudurururyryrydgsjdjsusussj
Converted-bffbudurururyryrydgsjdjsusussj
vallichandran1302
 
html1 (2).ppt html are very simple markup language
html1 (2).ppt html are very simple markup language
chauhanak1200
 
NEW HTML POINTS AND HTML BASICS WITH NEW TOPICS
NEW HTML POINTS AND HTML BASICS WITH NEW TOPICS
demomki4
 
Web development (html)
Web development (html)
AliNaqvi131
 
Class 1 handout (2) html exercises
Class 1 handout (2) html exercises
Erin M. Kidwell
 
wd project.pptx
wd project.pptx
dsffsdf1
 
HTML Notes And Some Attributes
HTML Notes And Some Attributes
HIFZUR RAHMAN
 
Ad

Recently uploaded (20)

Photo chemistry Power Point Presentation
Photo chemistry Power Point Presentation
mprpgcwa2024
 
IIT KGP Quiz Week 2024 Sports Quiz (Prelims + Finals)
IIT KGP Quiz Week 2024 Sports Quiz (Prelims + Finals)
IIT Kharagpur Quiz Club
 
Romanticism in Love and Sacrifice An Analysis of Oscar Wilde’s The Nightingal...
Romanticism in Love and Sacrifice An Analysis of Oscar Wilde’s The Nightingal...
KaryanaTantri21
 
Gladiolous Cultivation practices by AKL.pdf
Gladiolous Cultivation practices by AKL.pdf
kushallamichhame
 
ENGLISH_Q1_W1 PowerPoint grade 3 quarter 1 week 1
ENGLISH_Q1_W1 PowerPoint grade 3 quarter 1 week 1
jutaydeonne
 
University of Ghana Cracks Down on Misconduct: Over 100 Students Sanctioned
University of Ghana Cracks Down on Misconduct: Over 100 Students Sanctioned
Kweku Zurek
 
June 2025 Progress Update With Board Call_In process.pptx
June 2025 Progress Update With Board Call_In process.pptx
International Society of Service Innovation Professionals
 
M&A5 Q1 1 differentiate evolving early Philippine conventional and contempora...
M&A5 Q1 1 differentiate evolving early Philippine conventional and contempora...
ErlizaRosete
 
F-BLOCK ELEMENTS POWER POINT PRESENTATIONS
F-BLOCK ELEMENTS POWER POINT PRESENTATIONS
mprpgcwa2024
 
This is why students from these 44 institutions have not received National Se...
This is why students from these 44 institutions have not received National Se...
Kweku Zurek
 
Paper 107 | From Watchdog to Lapdog: Ishiguro’s Fiction and the Rise of “Godi...
Paper 107 | From Watchdog to Lapdog: Ishiguro’s Fiction and the Rise of “Godi...
Rajdeep Bavaliya
 
THE PSYCHOANALYTIC OF THE BLACK CAT BY EDGAR ALLAN POE (1).pdf
THE PSYCHOANALYTIC OF THE BLACK CAT BY EDGAR ALLAN POE (1).pdf
nabilahk908
 
Filipino 9 Maikling Kwento Ang Ama Panitikang Asiyano
Filipino 9 Maikling Kwento Ang Ama Panitikang Asiyano
sumadsadjelly121997
 
Q1_TLE 8_Week 1- Day 1 tools and equipment
Q1_TLE 8_Week 1- Day 1 tools and equipment
clairenotado3
 
LAZY SUNDAY QUIZ "A GENERAL QUIZ" JUNE 2025 SMC QUIZ CLUB, SILCHAR MEDICAL CO...
LAZY SUNDAY QUIZ "A GENERAL QUIZ" JUNE 2025 SMC QUIZ CLUB, SILCHAR MEDICAL CO...
Ultimatewinner0342
 
Code Profiling in Odoo 18 - Odoo 18 Slides
Code Profiling in Odoo 18 - Odoo 18 Slides
Celine George
 
How to use search fetch method in Odoo 18
How to use search fetch method in Odoo 18
Celine George
 
VCE Literature Section A Exam Response Guide
VCE Literature Section A Exam Response Guide
jpinnuck
 
A Visual Introduction to the Prophet Jeremiah
A Visual Introduction to the Prophet Jeremiah
Steve Thomason
 
INDUCTIVE EFFECT slide for first prof pharamacy students
INDUCTIVE EFFECT slide for first prof pharamacy students
SHABNAM FAIZ
 
Photo chemistry Power Point Presentation
Photo chemistry Power Point Presentation
mprpgcwa2024
 
IIT KGP Quiz Week 2024 Sports Quiz (Prelims + Finals)
IIT KGP Quiz Week 2024 Sports Quiz (Prelims + Finals)
IIT Kharagpur Quiz Club
 
Romanticism in Love and Sacrifice An Analysis of Oscar Wilde’s The Nightingal...
Romanticism in Love and Sacrifice An Analysis of Oscar Wilde’s The Nightingal...
KaryanaTantri21
 
Gladiolous Cultivation practices by AKL.pdf
Gladiolous Cultivation practices by AKL.pdf
kushallamichhame
 
ENGLISH_Q1_W1 PowerPoint grade 3 quarter 1 week 1
ENGLISH_Q1_W1 PowerPoint grade 3 quarter 1 week 1
jutaydeonne
 
University of Ghana Cracks Down on Misconduct: Over 100 Students Sanctioned
University of Ghana Cracks Down on Misconduct: Over 100 Students Sanctioned
Kweku Zurek
 
M&A5 Q1 1 differentiate evolving early Philippine conventional and contempora...
M&A5 Q1 1 differentiate evolving early Philippine conventional and contempora...
ErlizaRosete
 
F-BLOCK ELEMENTS POWER POINT PRESENTATIONS
F-BLOCK ELEMENTS POWER POINT PRESENTATIONS
mprpgcwa2024
 
This is why students from these 44 institutions have not received National Se...
This is why students from these 44 institutions have not received National Se...
Kweku Zurek
 
Paper 107 | From Watchdog to Lapdog: Ishiguro’s Fiction and the Rise of “Godi...
Paper 107 | From Watchdog to Lapdog: Ishiguro’s Fiction and the Rise of “Godi...
Rajdeep Bavaliya
 
THE PSYCHOANALYTIC OF THE BLACK CAT BY EDGAR ALLAN POE (1).pdf
THE PSYCHOANALYTIC OF THE BLACK CAT BY EDGAR ALLAN POE (1).pdf
nabilahk908
 
Filipino 9 Maikling Kwento Ang Ama Panitikang Asiyano
Filipino 9 Maikling Kwento Ang Ama Panitikang Asiyano
sumadsadjelly121997
 
Q1_TLE 8_Week 1- Day 1 tools and equipment
Q1_TLE 8_Week 1- Day 1 tools and equipment
clairenotado3
 
LAZY SUNDAY QUIZ "A GENERAL QUIZ" JUNE 2025 SMC QUIZ CLUB, SILCHAR MEDICAL CO...
LAZY SUNDAY QUIZ "A GENERAL QUIZ" JUNE 2025 SMC QUIZ CLUB, SILCHAR MEDICAL CO...
Ultimatewinner0342
 
Code Profiling in Odoo 18 - Odoo 18 Slides
Code Profiling in Odoo 18 - Odoo 18 Slides
Celine George
 
How to use search fetch method in Odoo 18
How to use search fetch method in Odoo 18
Celine George
 
VCE Literature Section A Exam Response Guide
VCE Literature Section A Exam Response Guide
jpinnuck
 
A Visual Introduction to the Prophet Jeremiah
A Visual Introduction to the Prophet Jeremiah
Steve Thomason
 
INDUCTIVE EFFECT slide for first prof pharamacy students
INDUCTIVE EFFECT slide for first prof pharamacy students
SHABNAM FAIZ
 
Ad

HTML 5 Simple Tutorial Part 3

  • 1. HTML Tutorial Topic 3 Prevoiusly we Learned Basic HTML Elements and Tables. Now Lets Start Topic 3
  • 2. Topics Today I Cover This All Topics ● List ● Blocks ● Classes and id ● Iframes ● Some Useful Tips
  • 3. List List – list as we know it contains list of item in ordered or unordered. Example Unordered List ● Apple ● Mango ● Guava ● Orange Ordered List 1.Apple 2.Mango 3.Guava 4.Orange 5.Banana
  • 4. List We Can Create Easily List in HTML By Using <ul> - for unorder list <ol> - for ordered list. <li> is a nested Element Which Comes Inside Both in ul and ol for list Items. E.g - <ul><li>First Item</li></ul>
  • 5. List We Can Customize List Item Easily Like Ordered List in Roman no. Format or Unordered List Item in square type items. For Ordered List We Use Attribute type=”value” Where Values is 1 = For Number List Items A= For uppercase Numbered List Item a= For Lowercase Numbered I = For Uppercase Roman Numbered i = For Lowercase Roman Numbered For UnOrdered List We Use CSS style=”list-style:values” Where Values is circle = For Circle Number List Items disc = For disc Numbered List Item square = For Square Numbered none = For Simply Print item without Bullets
  • 6. List List Example HTML <!DOCTYPE html> <html> <head> <title>List</title> </head> <body> <p>Unordered List</p> <ul> <li>Mango</li> <li>Guava</li> <li>Orange</li> <li>Apple</li> <li>Banana</li> </ul> <p>Ordered List</p> <ol> <li>Carrot</li> <li>Onion</li> <li>Potato</li> <li>Tomato</li> <li>Cabbage</li> </ol> </body> </html> Browser View
  • 7. Block and Inline Elements Block Elements – Block elements are such elements that stretch full width under body and start with new line. E.g : <div>,<article> Inline Elements – Inline Elements are such which does not takes full width cover only small part that it needs. E.g : <span>,<button>
  • 8. Block and Inline Elements Simple Example Block Elements Example <html> <body> <div style=”padding:2px;border:1px solid red;margin-bottom: 10px;”> I am A Block Element, I used Border So it Clearly Show Much It Takes Width, Padding For items don’t touch the Div Border and Margin bottom So i dont Touch the Span </div> <span style=”border:1px solid red;padding:2px”> I am a inline with border and (Padding so i dont Touch the Border Of Span </span> </body> </html> Result :
  • 9. Block and Inline Elements Some List Of Block Elements <div> <article> <section> <header> <footer> <main> <aside> <form> <ul> <ol> <p> <pre> <section> <table> <li> <h1>-<h6> Some List Of Inline Elements <a> <button> <input> <span> <select> <textarea> <i> <time> <img> <small>
  • 10. Class and id Since, We use class and id for select elements in our webpage by using javascript or css. We can declare multiple elements in our web page but if we declare multiple then css select the multiple multiple id but js does not select it. Id is always unique. We can use multiple class value in element but not in id E.g <span class=”first second”> We select class by using (.) dot and (#) for id. E.g for id – botton#myfirstid{ color:red } #myfirstid{ color:red } both is same but in upper it select only button elements. For class – button.myfirstclass{ color:yellow } .myfirstclass { color:yellow } both is same but first one select only input elements
  • 11. Class and id Simple selecting element in css <html> <head><style type="text/css"> div.firstclass{ background: red; } div.secondclass{ color:white; } div#firstid{ background: grey; color: black; } </style></head> <body> <div class="firstclass"> i am a div which is selected and controlled by css </div><span> css not select me because my class is same but i am a span element </span><div id="firstid"> css control me by my id and element </div><span id="firstid"> css not control me by my id and element because i am span element </span><div class="firstclass secondclass"> i a muti class element so firstclass and secondclass both select me </div> </body> </html>
  • 12. Iframes Iframes is used to display a embeded webpage in your current webpage just like adding other webpages or other website. ● E.g – we see embed youtube in many sites. Code : - <iframe src=”http://sswebtricks.blogspot.in/” width=”100%” height=”400px”>
  • 13. Iframes Lets Create a iframe <!DOCTYPE html> <html> <head> <title>Iframe</title> </head> <body> <iframe src="http://sswebtricks.blogspot.in/" width="100%" height="600px"></iframe> </body> </html> Browser View
  • 14. Some Useful Tips ● For Reloading Webpages after some seconds we use. <meta http-equiv="refresh" content="30"> where content= seconds use this code inside every meta tag comes inside head tag ● For Zoom View in Mobile Device or Creating Responsive (i cover this in css) web page we use. <meta name="viewport" content="width=device-width, initial-scale=1.0"> ● For writing computer codes or special codes like html in simple,programing language which print in programatic from we use <pre> tag Note : this will not execute in web page it just display codes in programatic form. <pre>Your Codes</pre> ● A simple Layout Of Webpage lets create it.
  • 15. Simple Web Page <!DOCTYPE html> <html> <head> <title>Simple layout</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <header>Welcome To SuperCoders</header> <nav> <a href="#">Home</a> <a href="#">Post</a> <a href="#">Signup</a> </nav> <aside> <p>I m a sidebar where some notification comes</p> </aside> <main> <section> <h2>What is Lorem Ipsum?</h2> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> </section> </main> <footer> &copy; SuperCoders 2018 </footer> </body> </html>
  • 16. Simple Web Page Style.css body{ margin:0px; padding: 0px; } header{ padding: 10px; background: orange; } aside{ background: tomato; width: 18%; padding: 10px; float: left; height: 400px; } main{ background: red; width: 78%; padding: 10px; float:left; height: 400px; } footer{ text-align: center; clear: both; color: white; background: green; padding: 10px; } nav{ background: pink; padding: 10px; } nav a{ background: yellow; padding: 5px; margin: 5px; }