SlideShare a Scribd company logo
Intro to HTML & CSS
Intro to HTML & CSS
What we’ll cover?
• What HTML and CSS is
• Structure of a HTML Document
• HTML editing software
• How to create a webpage
• Text, links, lists and images
• Various other HTML tags
• Adding CSS to a webpage
• Where to learn more
What is HTML?
Intro to HTML & CSS
Hyper Text
Markup Language
Hypertext is text
which contains links to other texts.
Markup languages are designed for the
processing, definition and presentation of
text. A markup language is to define the
visual elements of the web page.
Why do we need HTML?
• To define the structure of a web page
(HTML is the Skeleton of any modern
website)
• To add contents to our page
(text, pictures, videos etc…)
• To link pages to one another in order to
build an entire website
What is CSS?
HTML HTML+CSS
Cascading
Style Sheets
Cascading means
that styles can fall
from one style
sheet to another,
enabling multiple
style sheets to be
used on one HTML
document.
Why do we need CSS?
• Allows us to style any web page
• CSS describes how HTML elements should
be displayed
• Because of its cascading nature it allows
you to overwrite any previously defined
rules
Front-end Technologies
3 Awesome Front-end
Technologies
HTML
The structure of a web page
CSS
The styling of a web page
JavaScript
Makes a web page interactive
HTML + CSS + JavaScript = Black Magic
How does a
webpage work?
HTML + CSS = Source Code
User-friendly visible result
Intro to HTML & CSS
How to view the page
source?
Right Click
Select View page
source from the
dropdown menu
Page source example
How to inspect page
elements?
Right Click
Select Inspect
from the
dropdown menu
Page source example
Google Chrome Inspector in ACTION
• A programming software
(but every text editor will do)
...
• Your file, named in .html
→ my-own-page.html
• A browser, to display your page.
What do we need?
• FileZilla to upload the page to a server
(FileZilla or CyberDuck)
What do we need?
Intro to HTML & CSS
Intro to HTML & CSS
Coding correctly maximizes the chance
to have your page displayed correctly on
most of the platforms!
Intro to HTML & CSS
Intro to HTML & CSS
Email Clients
the late runners
• Think about mail clients as
even-less-compliant browsers.
Responsive Design
• Adapts to different screen sizes
• One version for all the devices that
supports HTML and other modern web
technologies
Intro to HTML & CSS
Now its easier than ever to
create mobile apps using
HTML, CSS and JavaScript.
Mozilla's Firefox OS
Like every language, HTML
and CSS have rules and
standards.
HTML5 CSS3
Intro to HTML & CSS
A - Boxes principle
• A box into a box into a box… : HTML is like
Russian dolls.
• Each of those boxes is called a tag.
A - Boxes principle
HTML	DOCUMENT
HEAD BODY
TABLETITLE
CSS
PARAGRAPH
IMAGE
B - What is a tag?
• A tag is used to declare a specific type of
container or element.
• TAG STRUCTURE :
<name (attributes (style/css)) ... > [content] </name>
Example
• Code
<p align=“center” style=“font-size: 34px; color: red;”>
Hello World
</p>
• Result
Hello World !
C - A Basic Page
<!DOCTYPE html >
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-
8" />
<title>My page</title>
</head>
<body>
<p align=“center" style="font-size:14px; color:#c00;">Hello World
!</p>
</body>
</html>
Which	language	is	
used	→	HTML
The	documentHEAD - here:
- Special	characters
- Page	title
Body
→	CONTENT
(here	a	paragraph)
Hello World !
So… where is the CSS?
Method - 1
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-
8" />
<title>My page</title>
</head>
<body>
<p align="justify" style="font-size:14px;color:#c00;> Hello World
!</p>
</body>
</html>
<!doctype html>
<html>
<head>
<title>My page</title>
<style type="text/css">.
p {
font-size: 14px;
color: #c00;
text-align: center;
}
</style>.
</head>
<body>
<p>Hello World !</p>
</body>
</html>
Method - 2
<!doctype html>
<html>
<head>
<title>My page</title>
<link rel="stylesheet" type="text/css" href="my-style.css">.
</head>
<body>
<p>Hello World !</p>
</body>
</html> p {
font-size: 14px;
color: #c00;
text-align: justify;
}
my-style.css :
Method - 3
Intro to HTML & CSS
D – Popular HTML tags
• Heading
• Paragraph
• Anchor / Link
• Image
• Unordered List
• List Item
• Horizontal Rule
• Division
• Table
<h1> - <h6>
<p>
<a>
<img>
<ul>
<li>
<hr>
<div>
<table>
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Time to talk about CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Hands-on Tutorial
Lets build a website and learn
making mistakes!
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Step-1
• Create a folder named Hello [Syed]
• Fire up your code editor
• Write Hello World and save the file as
index.html
• Create another file named style.css
Basic HTML Structure
Let’s give a title to our webpage
Comments
Populate Body : Header section
Populate Body : About Me section
Contact
Form
Image Gallery Section
Horizontal Row
Newsletter Section
Footer Section
Closing Body and HTML
tags
Intro to HTML & CSS
Intro to HTML & CSS
Styling Header
section
Padding: 100px
Padding: 100px
Styling About me
section
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Link an external
style sheet
e.g. style.css
Align Center
the page
External Font
HTML
CSS
HTML
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Common
Styles
Styling
Button
Intro to HTML & CSS
Intro to HTML & CSS
Styling
Button
Styling
Button
Styling
Button
Linking
Button
Intro to HTML & CSS
Styling
Button
Styling
Header section
Intro to HTML & CSS
Styling
Header section
Styling
Header section
Intro to HTML & CSS
Intro to HTML & CSS
Styling
About me section
Styling
About me section
Intro to HTML & CSS
Styling
Contact form section
Styling
Contact form section
Styling
Contact form section
Mobile Layout
with Table tag
Mobile Layout
with <div> tag
Styling
Gallery section
hr section
Newsletter
section
Styling
Contact form section
https://codepen.io/sami3d/pen/YZbGmq
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Why do they get rendered
differently?
• They are hosted in a 3rd party server
• Because of security issues
• Different email clients uses different
rendering engine
Solution?
• We design them considering its 1995!!
• We use tables
• We use inline css
• We avoid complicated Layouts
• We avoid HTML5 and CSS3
Intro to HTML & CSS
Nothing !
<table width="300" height="200" align="center">
<tr style="font-size:18px;color:#000000;" align="center">
<td width="100" style="background-color:#CC0000;">Holly</td>
<td style="background-color:#00CCFF, color:#FFFFFF;">Molly !</td>
</tr>
</table>
Holly Molly !
Some tips:
• Use of <table> instead of <div>
• Sliced images have to have
style="display:block;".
• Any special character in text (é, à, “, €, …)
should be encoded :
é → &eacute; OR € → &euro;
Some tips:
• CSS style has to be mainly inline (inside the
tag’s style=" " attribute). If there is some CSS
in the <head> section, it’s a best practice to
copy and put them at the bottom again.
Some tips:
• “Pixels” (image of 1x1 pixel),
like any content, has to be
before closing </body></html>
tags
Intro to HTML & CSS
Intro to HTML & CSS
THE NET NINJA
Interactive Lessons
Video Tutorials
Intro to HTML & CSS
Things we have discussed
• What HTML and CSS is
• Structure of a HTML Document
• HTML editing software
• How to create a webpage
• Text, links, lists and images
• Various other HTML tags
• Adding CSS to a webpage
• Adding JavaScript to a webpage
• Where to learn more
Intro to HTML & CSS

More Related Content

What's hot (20)

PDF
Introduction to HTML and CSS
Mario Hernandez
 
PPTX
Html coding
Briana VanBuskirk
 
PPT
Web Development using HTML & CSS
Shashank Skills Academy
 
PPT
Html & Css presentation
joilrahat
 
PPTX
Basic HTML
Sayan De
 
ODP
HTML5
Hatem Mahmoud
 
PPTX
HTML-(workshop)7557.pptx
Raja980775
 
PDF
HTML and CSS crash course!
Ana Cidre
 
PPT
Presentation on html, css
Aamir Sohail
 
PPT
Cascading Style Sheets (CSS) help
casestudyhelp
 
PPTX
Html
Nisa Soomro
 
PPT
HTML
Gouthaman V
 
PPTX
Html
Hemant Saini
 
PPT
Learning Html
Damian Gonz
 
PPTX
Css
Hemant Saini
 
PPT
Advanced Cascading Style Sheets
fantasticdigitaltools
 
PPTX
(Fast) Introduction to HTML & CSS
Dave Kelly
 
PPTX
Html5 and-css3-overview
Jacob Nelson
 
PPT
javaScript.ppt
sentayehu
 
PDF
HTML & CSS Masterclass
Bernardo Raposo
 
Introduction to HTML and CSS
Mario Hernandez
 
Html coding
Briana VanBuskirk
 
Web Development using HTML & CSS
Shashank Skills Academy
 
Html & Css presentation
joilrahat
 
Basic HTML
Sayan De
 
HTML-(workshop)7557.pptx
Raja980775
 
HTML and CSS crash course!
Ana Cidre
 
Presentation on html, css
Aamir Sohail
 
Cascading Style Sheets (CSS) help
casestudyhelp
 
Learning Html
Damian Gonz
 
Advanced Cascading Style Sheets
fantasticdigitaltools
 
(Fast) Introduction to HTML & CSS
Dave Kelly
 
Html5 and-css3-overview
Jacob Nelson
 
javaScript.ppt
sentayehu
 
HTML & CSS Masterclass
Bernardo Raposo
 

Similar to Intro to HTML & CSS (20)

PPT
Introduction css
sagaroceanic11
 
PPT
Introduction css
sagaroceanic11
 
PPTX
wd project.pptx
dsffsdf1
 
PPTX
HTML5_CSS_Lesson foe grade 7 students_Plan.pptx
shahana011
 
PDF
Punch it Up with HTML and CSS
mtlgirlgeeks
 
PDF
Girls Can Code East Brunswick Workshop Slides
Kayla Leung
 
PPTX
Intro to Html, CSS a beginner friendly guide.pptx
AqibKhan424778
 
PDF
Thinkful - Frontend Crash Course - Intro to HTML/CSS
TJ Stalcup
 
PDF
slidesgo-mastering-html-and-css-a-comprehensive-guide-to-tags-and-elements-20...
MrunmayiLohakare
 
PPT
Basic HTML/CSS
Chris Heiden
 
PDF
HTML+CSS: how to get started
Dimitris Tsironis
 
PPTX
Introduction to HTML and CSS
danpaquette
 
PDF
3 coding101 fewd_lesson3_your_first_website 20210105
John Picasso
 
PPTX
Rakshat bhati
Rakshat bhati
 
PDF
Introduction to HTML-CSS-Javascript.pdf
DakshPratapSingh1
 
PPTX
Basics of Front End Web Dev PowerPoint
Sahil Gandhi
 
PPTX
Web development using HTML and CSS
SiddhantSingh980217
 
PDF
Styling Your Web Pages with Cascading Style Sheets / EDU course / University ...
Patrick Lauke
 
PPT
ppt.ppt
Sana903754
 
PPTX
GDG On Campus NBNSCOE Web Workshop Day 1 : HTML & CSS
udaymore742
 
Introduction css
sagaroceanic11
 
Introduction css
sagaroceanic11
 
wd project.pptx
dsffsdf1
 
HTML5_CSS_Lesson foe grade 7 students_Plan.pptx
shahana011
 
Punch it Up with HTML and CSS
mtlgirlgeeks
 
Girls Can Code East Brunswick Workshop Slides
Kayla Leung
 
Intro to Html, CSS a beginner friendly guide.pptx
AqibKhan424778
 
Thinkful - Frontend Crash Course - Intro to HTML/CSS
TJ Stalcup
 
slidesgo-mastering-html-and-css-a-comprehensive-guide-to-tags-and-elements-20...
MrunmayiLohakare
 
Basic HTML/CSS
Chris Heiden
 
HTML+CSS: how to get started
Dimitris Tsironis
 
Introduction to HTML and CSS
danpaquette
 
3 coding101 fewd_lesson3_your_first_website 20210105
John Picasso
 
Rakshat bhati
Rakshat bhati
 
Introduction to HTML-CSS-Javascript.pdf
DakshPratapSingh1
 
Basics of Front End Web Dev PowerPoint
Sahil Gandhi
 
Web development using HTML and CSS
SiddhantSingh980217
 
Styling Your Web Pages with Cascading Style Sheets / EDU course / University ...
Patrick Lauke
 
ppt.ppt
Sana903754
 
GDG On Campus NBNSCOE Web Workshop Day 1 : HTML & CSS
udaymore742
 
Ad

Recently uploaded (20)

PDF
AI Intervention in Design & Content Creation
YellowSlice1
 
PPTX
TAMBO CANTA CALLAO C3 INFOGRAFIA - 05.07.pptx
milleracosta1
 
PDF
Presentation - Interior Design Concepts (2).pdf
vrindagrawal456
 
PPTX
DEVELOPING-PARAGRAPHS.pptx-developing...
rania680036
 
PPTX
ash green THEMEN PPT WITH CYCLONE DONATIOANS ASN DUNDARTIONPROSAL
Younghusbandwife
 
PPTX
Colorful Bold Safari Animals Presentation.pptx
HNgcTrAnh
 
PDF
S2 Associates brings museum exhibits to life with innovative design.pdf
S2 Associates
 
PPTX
Chapter 2-3.pptxnsnsnsnsnsjsjsjsjejeusuejsjsj
hibaaqabdirisaaq331
 
PPTX
Town planning is a concept used in architectural design. It plays a very impo...
IshikaPanchal11
 
PDF
ARC-101-B-4.pdfxxxxxxxxxxxxxxxxxxxxxxxxx
IzzyBaniquedBusto
 
PPTX
811109685-CS3401-Algorithms-Unit-IV.pptx
archu26
 
PPTX
Exploring Types of Rocks Educational Presentation rock forming james harold r...
jamescarllfelomino6
 
PPTX
办理学历认证UHI在读证明信英国赫特福德郡大学毕业证范本,UHI成绩单修改
Taqyea
 
PDF
Plastic Foam as eco-friendly product in interiors
Disha Agrawal
 
PDF
tdtr.pdfjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj
JuanCParedes
 
PPTX
the very teaching plan extra ordinary.pptx
PamelaOdibeli1
 
PPTX
Adobe Creative Cloud Cleaner Tool Crack Free Download Latest Version 2025
Slideshare
 
PDF
Presentation of design made by power point
habibikuw002
 
PDF
placemaking 10 principles bY Berkley group
Radhika525487
 
PDF
Case Study on good and bad acoustics in auditorium
Disha Agrawal
 
AI Intervention in Design & Content Creation
YellowSlice1
 
TAMBO CANTA CALLAO C3 INFOGRAFIA - 05.07.pptx
milleracosta1
 
Presentation - Interior Design Concepts (2).pdf
vrindagrawal456
 
DEVELOPING-PARAGRAPHS.pptx-developing...
rania680036
 
ash green THEMEN PPT WITH CYCLONE DONATIOANS ASN DUNDARTIONPROSAL
Younghusbandwife
 
Colorful Bold Safari Animals Presentation.pptx
HNgcTrAnh
 
S2 Associates brings museum exhibits to life with innovative design.pdf
S2 Associates
 
Chapter 2-3.pptxnsnsnsnsnsjsjsjsjejeusuejsjsj
hibaaqabdirisaaq331
 
Town planning is a concept used in architectural design. It plays a very impo...
IshikaPanchal11
 
ARC-101-B-4.pdfxxxxxxxxxxxxxxxxxxxxxxxxx
IzzyBaniquedBusto
 
811109685-CS3401-Algorithms-Unit-IV.pptx
archu26
 
Exploring Types of Rocks Educational Presentation rock forming james harold r...
jamescarllfelomino6
 
办理学历认证UHI在读证明信英国赫特福德郡大学毕业证范本,UHI成绩单修改
Taqyea
 
Plastic Foam as eco-friendly product in interiors
Disha Agrawal
 
tdtr.pdfjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj
JuanCParedes
 
the very teaching plan extra ordinary.pptx
PamelaOdibeli1
 
Adobe Creative Cloud Cleaner Tool Crack Free Download Latest Version 2025
Slideshare
 
Presentation of design made by power point
habibikuw002
 
placemaking 10 principles bY Berkley group
Radhika525487
 
Case Study on good and bad acoustics in auditorium
Disha Agrawal
 
Ad

Intro to HTML & CSS