SlideShare a Scribd company logo
HTML & CSS
An Introduction
By Mario Hernandez
Web Designer & Front-End Developer
Web: designsdrive.com
Twitter: @DesignsDrive
Agenda
HTML5
â—Ź Document Object Model (DOM)
â—Ź Doctype
â—Ź Semantic Tags
â—Ź Comments
â—Ź Best practices
Agenda
CSS3
â—Ź What it is, how it works & how to use
â—Ź IDs vs. Classes
â—Ź Inline and Block Elements
â—Ź Shorthand
â—Ź FLOATS
â—Ź Comments
â—Ź Intro to CSS3 Properties (if time permits)
Agenda
Putting it all together
â—Ź Project Structure
â—Ź Website Layouts
â—Ź Tools to Improve Workflow
What is HTML?
Wikipedia:
is the main markup language for creating web pages and other
information that can be displayed in a web browser.
Setting the standards
World Wide Web Consortium (W3C)
The Web Hypertext Application Technology Working Group
(WHATWG) i
Document Object Model (DOM)
The HTML DOM defines a standard way for
accessing and manipulating HTML documents.
DOCUMENTDOM
DOCUMENT
ROOT ELEMENT
HTML
DOM
DOCUMENT
ROOT ELEMENT
HTML
ELEMENT
<HEAD>
DOM
DOCUMENT
ROOT ELEMENT
HTML
ELEMENT
<HEAD>
ELEMENT
<BODY>
DOM
DOCUMENT
ROOT ELEMENT
HTML
ELEMENT
<HEAD>
ELEMENT
<BODY>
ELEMENT
<TITLE>
DOM
DOCUMENT
ROOT ELEMENT
HTML
ELEMENT
<HEAD>
ELEMENT
<BODY>
ELEMENT
<TITLE> ELEMENT
<p>
ELEMENT
<a>
ELEMENT
<H1>
DOM
Doctype
HTML4:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Doctype
HTML4:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
HTML5
<!Doctype html>
HTML5 Semantic Elements
Semantic = Meaning
Semantic Elements = Elements with meaning
HTML5 Semantic Elements
Semantic = Meaning
Semantic Elements = Elements with meaning
Examples of non-semantic elements: <div> and <span> -
Tells nothing about its content.
Examples of semantic elements: <form>, <table>,
and <img> - Clearly defines its content.
HTML5 Semantic Elements
New HTML5 Semantic Elements Include:
<header>
<nav>
<section>
<article>
<hgroup>
<canvas>
<video>
<audio>
<aside>
<figcaption>
<figure>
<footer>
HTML5 Semantic Elements
Visual Representation of new HTML5 Semantic Elements
Comments
<!-- Single line HTML comment -->
<!-- This is a multiple line HTML comment
when there is a need to be more detailed -->
Best Practices
â—Ź Comment
â—Ź Semantic Tags
â—Ź Separate Markup, Styling and Scripting
HANDS-ON
What is CSS?
Wikipedia:
Cascading Style Sheets (CSS) is a style sheet language used for
describing the look and formatting of a document written in a markup
language. Its most common application is to style web pages written
in HTML and XHTML.
How it works
Syntax:
A CSS rule has two parts, a selector and one or more
declarations.
How to use
â—Ź External Style Sheet
â—Ź Internal Style Sheet
â—Ź Inline Style
How to use
External Stylesheet
<head>
<link rel="stylesheet" type="text/css" href="styles.
css">
</head>
You can use one or multiple stylesheets
How to use
Internal Stylesheet
<head>
<style type="text/css">
body {color: black; font-family: Helvetica, Verdana,
san-serif;}
p {line-height: 1.5;font-size:14px;}
</style>
</head>
How to use
Inline Style
<div style="background: black; color: white">
...
</div>
Cascading
â—Ź Browser default
â—Ź External style sheet
â—Ź Internal style sheet (in the head section)
â—Ź Inline style (inside an HTML element)
Rules are applied from top to bottom. Last rule will
overwrite previous rules.
IDs vs. Classes
IDs are prefixed with #
Classes are prefixed with a period (.)
Example: #myID
Example: .myClass
IDs vs. Classes
<div id="myID">This is a container</div>
<div class="myClass">This is a
container</div>
IDs or Classes can use UPPER and lower case. They can
also use numeric values as well as non-alpha-numeric
values
Examples: MYID, myclass, my-id
Inline & Block Elements
Inline elements are those that on their own have no effect in
the structure or layout of a page.
Example: <span>, <em>, <a>, <strong>
Inline & Block Elements
Inline elements are those that on their own have no effect in
the structure or layout of a page.
Example: <span>, <em>, <a>, <strong>
Block level elements are those that affect the structure and
layout of a page.
Example: <div>, <p>, h1-h6
Inline & Block Elements
Inline elements are those that on their own have no effect in
the structure or layout of a page.
Example: <span>, <em>, <a>, <strong>
Block level elements are those that affect the structure and
layout of a page.
Example: <div>, <p>, h1-h6
Block level elements generate a line break and can have
dimensions.
Shorthand
p {margin: 4px 4px 4px 4px;}
p {margin:4px;}
.box {
border-top: 1px solid #000000;
border-right: 1px solid #000000;
border-bottom: 1px solid #000000;
border-left: 1px solid #000000;
}
.box {border: 1px solid #000;}
Shorthand
body {
background-color: #FFFFFF;
background-image: bg.jpg;
background-position: left top;
background-repeat: repeat;
}
body {background: #FFF url(bg.jpg) 0 0 no-
repeat;}
Floats
Hands-on demo
Resources
TWITTER.com
http://www.w3schools.com/
http://paulaborowska.com/a-brief-introduction-to-html5-2/
CSS-Tricks.com
http://html5please.com/
http://css3please.com/
http://www.abookapart.com/products/html5-for-web-designers
http://www.abookapart.com/products/css3-for-web-designers
http://readwrite.com/2013/05/31/programming-core-skill-21st-century
Questions
Mario Hernandez
http://designsdrive.com
Twitter
@DesignsDrive
Email
designsdrive@gmail.com

More Related Content

PDF
HTML CSS Basics
Mai Moustafa
 
PPTX
HTML, CSS and Java Scripts Basics
Sun Technlogies
 
PDF
Lista de exercĂ­cios em portugol
Gabriel Faustino
 
PDF
Web front end development introduction to html css and javascript
Marc Huang
 
PDF
Introduction to blender
Carlos Cámara
 
PDF
JavaScript - Chapter 12 - Document Object Model
WebStackAcademy
 
PDF
Web Development with HTML5, CSS3 & JavaScript
Edureka!
 
PPTX
INFORMATION SECURITY
Ahmed Moussa
 
HTML CSS Basics
Mai Moustafa
 
HTML, CSS and Java Scripts Basics
Sun Technlogies
 
Lista de exercĂ­cios em portugol
Gabriel Faustino
 
Web front end development introduction to html css and javascript
Marc Huang
 
Introduction to blender
Carlos Cámara
 
JavaScript - Chapter 12 - Document Object Model
WebStackAcademy
 
Web Development with HTML5, CSS3 & JavaScript
Edureka!
 
INFORMATION SECURITY
Ahmed Moussa
 

What's hot (20)

PDF
Intro to HTML and CSS basics
Eliran Eliassy
 
PDF
Bootstrap 5 basic
Jubair Ahmed Junjun
 
PPTX
Html
yugank_gupta
 
PPT
Introduction to Cascading Style Sheets (CSS)
Chris Poteet
 
PPTX
(Fast) Introduction to HTML & CSS
Dave Kelly
 
PDF
HTML and CSS crash course!
Ana Cidre
 
PPT
Html basics
mcatahir947
 
PPTX
An Overview of HTML, CSS & Java Script
Fahim Abdullah
 
PPT
CSS for Beginners
Amit Kumar Singh
 
PPT
Introduction to JavaScript (1).ppt
MuhammadRehan856177
 
PPTX
HTML (Web) basics for a beginner
Jayapal Reddy Nimmakayala
 
PDF
Basic Details of HTML and CSS.pdf
Kalyani Government Engineering College
 
PPTX
Introduction to CSS
Folasade Adedeji
 
PPTX
HTML, CSS And JAVASCRIPT!
Syahmi RH
 
PPTX
Cascading style sheet
Michael Jhon
 
PPTX
Html5 tutorial for beginners
Singsys Pte Ltd
 
PPTX
Introduction to HTML and CSS
Ferdous Mahmud Shaon
 
PDF
Intro to HTML & CSS
Syed Sami
 
PPTX
1 03 - CSS Introduction
apnwebdev
 
Intro to HTML and CSS basics
Eliran Eliassy
 
Bootstrap 5 basic
Jubair Ahmed Junjun
 
Html
yugank_gupta
 
Introduction to Cascading Style Sheets (CSS)
Chris Poteet
 
(Fast) Introduction to HTML & CSS
Dave Kelly
 
HTML and CSS crash course!
Ana Cidre
 
Html basics
mcatahir947
 
An Overview of HTML, CSS & Java Script
Fahim Abdullah
 
CSS for Beginners
Amit Kumar Singh
 
Introduction to JavaScript (1).ppt
MuhammadRehan856177
 
HTML (Web) basics for a beginner
Jayapal Reddy Nimmakayala
 
Basic Details of HTML and CSS.pdf
Kalyani Government Engineering College
 
Introduction to CSS
Folasade Adedeji
 
HTML, CSS And JAVASCRIPT!
Syahmi RH
 
Cascading style sheet
Michael Jhon
 
Html5 tutorial for beginners
Singsys Pte Ltd
 
Introduction to HTML and CSS
Ferdous Mahmud Shaon
 
Intro to HTML & CSS
Syed Sami
 
1 03 - CSS Introduction
apnwebdev
 
Ad

Similar to Introduction to HTML and CSS (20)

PPTX
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
brianbyamukama302
 
PPTX
Html, css and jquery introduction
cncwebworld
 
PPTX
1812010023 web developement(ANKITA OJHA)CSE4(A).pptx
HarshJaiswal535013
 
PDF
GDI Seattle Intermediate HTML and CSS Class 1
Heather Rock
 
PPTX
wd project.pptx
dsffsdf1
 
PPTX
Html presentation
Jordan Dichev
 
PPTX
HTML5 and CSS Fundamentals MOOC Course College Presentation
KuchBhi90
 
PPTX
Cascading style sheet, CSS Box model, Table in CSS
SherinRappai
 
PPTX
Internet and Web Technology (CLASS-4) [CSS & JS]
Ayes Chinmay
 
PPTX
DHTML
Ravinder Kamboj
 
PPTX
Teched Inetrgation ppt and lering in simple
JagadishBabuParri
 
PDF
Html / CSS Presentation
Shawn Calvert
 
PPTX
Cascading style-sheet-
Nimrakhan89
 
PPTX
Rapid HTML Prototyping with Bootstrap 4
UXPA International
 
PPTX
Chapter_1_Web_Technologies_Basics (CSS)_Part_2.pptx
eyasu6
 
PPTX
Web development it slideWeb development it slidemy web development slide-...
AliyuUmarIsa
 
PPTX
Css.html
Anaghabalakrishnan
 
PPT
Css training tutorial css3 &amp; css4 essentials
QA TrainingHub
 
PPT
Web development basics (Part-1)
Rajat Pratap Singh
 
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
brianbyamukama302
 
Html, css and jquery introduction
cncwebworld
 
1812010023 web developement(ANKITA OJHA)CSE4(A).pptx
HarshJaiswal535013
 
GDI Seattle Intermediate HTML and CSS Class 1
Heather Rock
 
wd project.pptx
dsffsdf1
 
Html presentation
Jordan Dichev
 
HTML5 and CSS Fundamentals MOOC Course College Presentation
KuchBhi90
 
Cascading style sheet, CSS Box model, Table in CSS
SherinRappai
 
Internet and Web Technology (CLASS-4) [CSS & JS]
Ayes Chinmay
 
Teched Inetrgation ppt and lering in simple
JagadishBabuParri
 
Html / CSS Presentation
Shawn Calvert
 
Cascading style-sheet-
Nimrakhan89
 
Rapid HTML Prototyping with Bootstrap 4
UXPA International
 
Chapter_1_Web_Technologies_Basics (CSS)_Part_2.pptx
eyasu6
 
Web development it slideWeb development it slidemy web development slide-...
AliyuUmarIsa
 
Css.html
Anaghabalakrishnan
 
Css training tutorial css3 &amp; css4 essentials
QA TrainingHub
 
Web development basics (Part-1)
Rajat Pratap Singh
 
Ad

More from Mario Hernandez (15)

PDF
Responsive images in Drupal 8
Mario Hernandez
 
PDF
Component-driven Drupal Theming
Mario Hernandez
 
PDF
Responsive design with flexbox
Mario Hernandez
 
PDF
Building your first d8 theme
Mario Hernandez
 
PDF
HTML5 and CSS3
Mario Hernandez
 
PDF
Introduction to drupal
Mario Hernandez
 
PDF
Rapid wireframing and prototyping
Mario Hernandez
 
KEY
CSS Frameworks
Mario Hernandez
 
PPTX
Responsive Web Design
Mario Hernandez
 
KEY
CSS Framework + Progressive Enhacements
Mario Hernandez
 
KEY
Introduction to Drupal Content Management System
Mario Hernandez
 
KEY
CSS3 for web designer - How to design a visually appealing website
Mario Hernandez
 
PDF
960 Grid System - A hands-on introduction
Mario Hernandez
 
KEY
Front end-design and best practices
Mario Hernandez
 
KEY
An introduction to the 960 grid system
Mario Hernandez
 
Responsive images in Drupal 8
Mario Hernandez
 
Component-driven Drupal Theming
Mario Hernandez
 
Responsive design with flexbox
Mario Hernandez
 
Building your first d8 theme
Mario Hernandez
 
HTML5 and CSS3
Mario Hernandez
 
Introduction to drupal
Mario Hernandez
 
Rapid wireframing and prototyping
Mario Hernandez
 
CSS Frameworks
Mario Hernandez
 
Responsive Web Design
Mario Hernandez
 
CSS Framework + Progressive Enhacements
Mario Hernandez
 
Introduction to Drupal Content Management System
Mario Hernandez
 
CSS3 for web designer - How to design a visually appealing website
Mario Hernandez
 
960 Grid System - A hands-on introduction
Mario Hernandez
 
Front end-design and best practices
Mario Hernandez
 
An introduction to the 960 grid system
Mario Hernandez
 

Recently uploaded (20)

PDF
Revolutionize Operations with Intelligent IoT Monitoring and Control
Rejig Digital
 
PDF
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
PDF
How Onsite IT Support Drives Business Efficiency, Security, and Growth.pdf
Captain IT
 
PDF
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
PDF
CIFDAQ'S Market Insight: BTC to ETH money in motion
CIFDAQ
 
PDF
Shreyas_Phanse_Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
SHREYAS PHANSE
 
PDF
Building High-Performance Oracle Teams: Strategic Staffing for Database Manag...
SMACT Works
 
PPTX
Smart Infrastructure and Automation through IoT Sensors
Rejig Digital
 
PDF
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
PDF
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
PDF
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
PDF
Software Development Company | KodekX
KodekX
 
PDF
Enable Enterprise-Ready Security on IBM i Systems.pdf
Precisely
 
PDF
madgavkar20181017ppt McKinsey Presentation.pdf
georgschmitzdoerner
 
PDF
Chapter 2 Digital Image Fundamentals.pdf
Getnet Tigabie Askale -(GM)
 
PDF
Event Presentation Google Cloud Next Extended 2025
minhtrietgect
 
PDF
REPORT: Heating appliances market in Poland 2024
SPIUG
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
Make GenAI investments go further with the Dell AI Factory - Infographic
Principled Technologies
 
PPTX
How to Build a Scalable Micro-Investing Platform in 2025 - A Founder’s Guide ...
Third Rock Techkno
 
Revolutionize Operations with Intelligent IoT Monitoring and Control
Rejig Digital
 
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
How Onsite IT Support Drives Business Efficiency, Security, and Growth.pdf
Captain IT
 
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
CIFDAQ'S Market Insight: BTC to ETH money in motion
CIFDAQ
 
Shreyas_Phanse_Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
SHREYAS PHANSE
 
Building High-Performance Oracle Teams: Strategic Staffing for Database Manag...
SMACT Works
 
Smart Infrastructure and Automation through IoT Sensors
Rejig Digital
 
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
Software Development Company | KodekX
KodekX
 
Enable Enterprise-Ready Security on IBM i Systems.pdf
Precisely
 
madgavkar20181017ppt McKinsey Presentation.pdf
georgschmitzdoerner
 
Chapter 2 Digital Image Fundamentals.pdf
Getnet Tigabie Askale -(GM)
 
Event Presentation Google Cloud Next Extended 2025
minhtrietgect
 
REPORT: Heating appliances market in Poland 2024
SPIUG
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
Make GenAI investments go further with the Dell AI Factory - Infographic
Principled Technologies
 
How to Build a Scalable Micro-Investing Platform in 2025 - A Founder’s Guide ...
Third Rock Techkno
 

Introduction to HTML and CSS