SlideShare a Scribd company logo
HTML & CSS 2017
https://about.me/colin.loretz
HTML & CSS 2017
INTRODUCTIOn
TO HTML
TOOLS OF
THE TRADE
TEXT EDITOR
Download at http://atom.io
http://atom.io
Chrome
Firefox
Safari
Edge & IE
BROWSERS
HANDLING HTML
PROJECT FILES
BUILDING THE
FOUNDATION
HTML
BUILDING
BLOCKS
<!DOCTYPE html>
HTML5 DOCTYPE
<html>
html tag
<!DOCTYPE html>
<html>
The rest our our website
will go here.
</html>
<head>
head definitions
<!DOCTYPE html>
<html>
<head>
</head>
</html>
<title>
page title
<!DOCTYPE html>
<html>
<head>
<title>Our First Page</title>
</head>
</html>
<body>
document body
<!DOCTYPE html>
<html>
<head>
<title>Our First Page</title>
</head>
<body>
The rest of our website here
</body>
</html>
<!-- # -->
comments
<!DOCTYPE html>
<html>
<head>
<title>Our First Page</title>
</head>
<body>
<!-- This is a comment -->
The rest of our website here
</body>
</html>
<h1>
heading tags
<h2>
heading tags
<h3>
heading tags
<h4>
heading tags
<h5>
heading tags
…
<h1>Largest Heading</h1>
<h2>Largest Heading</h2>
<h3>Largest Heading</h3>
<h4>Largest Heading</h4>
<h5>Largest Heading</h5>
…
<p>
paragraph tag
…
<h1>Our headline</h1>
<p>Some cool paragraph text.</p>
<p>Another awesome paragraph
with even more text.</p>
…
<br>
line break
…
<h1>Our headline</h1>
<p>An awesome paragraph with a
line <br /> break in it.</p>
…
<small>
smaller font size
…
<h1>Our headline</h1>
<p>This word will be
<small>smaller</small> than the
rest.</p>
…
element attributes
<a>
anchor (link) tag
<a href=“http://google.com”>
anchor (link) tag
…
<h1>Our headline</h1>
<p>This word will be
<a href=“https://google.com”>a
link</a> to google.com.</p>
…
<img>
image tag
<img src=“loading.gif”>
image tag
…
<h1>Our headline</h1>
<p>A time machine!</p>
<img src=“delorean.gif”>
…
BUILD TIME
Create a new HTML document that includes:
• Doctype
• Head
• Title
• Body
• H1 Headline
• H3 Headline
• Paragraphs
• Bold text
• Link to your favorite website
• An image
<ul>
unordered list
<li>
list item
…
<ul>
<li>Apples</li>
<li>Bananas</li>
<li>Oranges</li>
</ul>
…
INTERMEDIATE
HTML
<div>
div containers
…
<div>
Any HTML content you want to
organize in a div container,
including more divs.
</div>
…
<span>
span containers
…
<div>
Any <span>HTML</span> content
you want to organize in a div
container, including more divs.
</div>
…
NAMING THINGS
ids
…
<div id=“intro”>
Some text
</div>
…
applied to a singular element
classes
…
<div class=“product”>
Product 1
</div>
<div class=“product”>
Product 2
</div>
…
applied to many elements
semantic web
self documenting
INTRODUCTION
TO CSS
adding style!
inline css
…
<div style=“color: red”>
Any HTML content you want to
organize in a div container,
including more divs.
</div>
…
<style>
style tag
…
<style>
div {
color: red;
}
</style>
…
using .css files
…
<head>
<link rel="stylesheet"
href=“css/mystyle.css”
media="screen" charset="utf-8">
</head>
…
html {
font-family: arial;
}
body {
margin: 0px;
padding: 0px;
}
mystyle.css
selectors
element selectors
h2 { … }
li { … }
p { … }
div { … }
body { … }
table { … }
.product { … }
li.product { … }
li .product { … }
class selectors
#intro { … }
div#intro { … }
div #intro { … }
id selectors
#intro ul.products li {
/* styles go here */
}
mix and match selectors
css properties
providing structure
height:
50px;
width:
100px;
margin:
5px 5px 5px 5px;
display:
inline;
display:
block;
display:
none;
typography
font-family:
helvetica, arial, sans-serif;
font-size:
12px;
font-size:
12pt;
font-size:
1em;
font-size:
70%;
font-weight:
bold;
font-weight:
normal;
text-decoration:
underline;
text-decoration:
none;
color!
color:
black;
color:
#000000;
color:
#000;
color:
rgb(0,0,0);
background-color:
black;
div {
height: 50px;
width: 100px;
color: white;
font-size: 16px;
background-color: black;
}
putting it all together
introducing the
box model
height
width
margin-top
margin-bottom
margin-right
margin-left
padding:
5px 5px 5px 5px;
div {
height: 50px;
width: 100px;
padding: 5px 10px 5px 10px;
margin: 5px 10px 5px 10px;
}
putting it together
5px
50px
100px
5px
5px
5px
10px 10px10px 10px
height of element
padding-top
padding-bottom
margin-top
margin-bottom
border-top
border-bottom+
actual height
width of element
padding-left
padding-right
margin-left
margin-right
border-right
border-left+
actual width
div {
margin: top right bottom left;
}
putting it together
div {
margin: 5px 10px 5px 10px;
}
div {
margin: 5px 10px;
}
shorthand
div {
margin: 5px;
}
floats
div {
float: left;
}
img {
float: right
}
CSS TIPS &
TRICKS
STYLING A CSS BUTTON
http://codepen.io/rcacademy/pen/JXMPRa
BACKGROUND IMAGES
div {
background-image: url(path/to/image.jpg);
background-size: cover;
background-repeat: no-repeat;
}
Floats!
http://codepen.io/rcacademy/pen/MyrEWJ
UL LIst as a NAV
http://codepen.io/rcacademy/pen/GZyMBJ
BUILD TIME
CSS Layout Exercise
https://github.com/rcacademy/webdevcamp/tree/master/week1/w1d3
CSS RESET
• Resets allow you to set things to make your website
look consistent across browsers
• You can add more than one stylesheet to a page
• Alternatively, you can do a normalize.css that sets
all of your elements to a common baseline that is
not 0.
USER BADGES
http://codepen.io/rcacademy/pen/yOpLWd
BUILD TIME
https://about.me/colin.loretz

More Related Content

PDF
HTML/CSS Crash Course (april 4 2017)
Daniel Friedman
 
PDF
HTML und CSS für Designer / HTML & CSS for designers (PUBKON 2014)
Michaela Lehr
 
KEY
Artdm171 Week4 Tags
Gilbert Guerrero
 
PPTX
Html5 elements-Kip Academy
kip academy
 
PPTX
HTML/CSS the beginning
WebMuses
 
PDF
HTML and CSS crash course!
Ana Cidre
 
PPTX
HTML, CSS and Java Scripts Basics
Sun Technlogies
 
PDF
An Intro to HTML & CSS
Shay Howe
 
HTML/CSS Crash Course (april 4 2017)
Daniel Friedman
 
HTML und CSS für Designer / HTML & CSS for designers (PUBKON 2014)
Michaela Lehr
 
Artdm171 Week4 Tags
Gilbert Guerrero
 
Html5 elements-Kip Academy
kip academy
 
HTML/CSS the beginning
WebMuses
 
HTML and CSS crash course!
Ana Cidre
 
HTML, CSS and Java Scripts Basics
Sun Technlogies
 
An Intro to HTML & CSS
Shay Howe
 

What's hot (20)

PDF
Introduction to HTML and CSS
Mario Hernandez
 
PPSX
HTML & XHTML Basics
Hossein Zahed
 
PPTX
Introduction to HTML and CSS
danpaquette
 
PDF
Intro to CSS
Randy Oest II
 
PPT
Html & CSS - Best practices 2-hour-workshop
Vero Rebagliatte
 
PPTX
Web designing (1) - Html Basic Codding
Rabiul robi
 
PPTX
HTML CSS | Computer Science
Transweb Global Inc
 
PPTX
HTML CSS and Web Development
Rahul Mishra
 
PPTX
Css inclusion
AbhishekMondal42
 
PPTX
HTML Fundamentals by Telerik Academy
Ognyan Penkov
 
PPTX
Web Development Basics: HOW TO in HTML
Der Lo
 
PDF
Introduction to HTML, CSS, and Javascript
Agustinus Theodorus
 
PPT
HTML BY JODY C SALAS
Mohsin Ghadiali
 
PPTX
CSC103 Web Technologies: HTML, CSS, JS
Richard Homa
 
PDF
CSS3 Introduction
Jaeni Sahuri
 
PPTX
About Best friends - HTML, CSS and JS
Naga Harish M
 
PDF
HTML CSS Best Practices
hoctudau
 
TXT
google logo
sunil kumar
 
PPTX
Coding a Website with HTML
wrhsbusiness
 
PPT
Learn CSS From Scratch
ecobold
 
Introduction to HTML and CSS
Mario Hernandez
 
HTML & XHTML Basics
Hossein Zahed
 
Introduction to HTML and CSS
danpaquette
 
Intro to CSS
Randy Oest II
 
Html & CSS - Best practices 2-hour-workshop
Vero Rebagliatte
 
Web designing (1) - Html Basic Codding
Rabiul robi
 
HTML CSS | Computer Science
Transweb Global Inc
 
HTML CSS and Web Development
Rahul Mishra
 
Css inclusion
AbhishekMondal42
 
HTML Fundamentals by Telerik Academy
Ognyan Penkov
 
Web Development Basics: HOW TO in HTML
Der Lo
 
Introduction to HTML, CSS, and Javascript
Agustinus Theodorus
 
HTML BY JODY C SALAS
Mohsin Ghadiali
 
CSC103 Web Technologies: HTML, CSS, JS
Richard Homa
 
CSS3 Introduction
Jaeni Sahuri
 
About Best friends - HTML, CSS and JS
Naga Harish M
 
HTML CSS Best Practices
hoctudau
 
google logo
sunil kumar
 
Coding a Website with HTML
wrhsbusiness
 
Learn CSS From Scratch
ecobold
 
Ad

Similar to HTML & CSS 2017 (20)

PPTX
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
brianbyamukama302
 
PPTX
Intermediate Web Design
mlincol2
 
KEY
Slow kinda sucks
Tim Wright
 
PPTX
Web Development , HTML & CSS & JAVASCRIPT
VENKATANAGABHUVANESH
 
PDF
Create Web Pages by programming of your chice.pdf
workingdev2003
 
PPTX
What is CSS.pptx power point presentation
Coderkids
 
PDF
GDI Seattle Intermediate HTML and CSS Class 1
Heather Rock
 
PDF
Thinkful - Frontend Crash Course - Intro to HTML/CSS
TJ Stalcup
 
PPTX
[SUTD GDSC] Intro to HTML and CSS
BeckhamWee
 
KEY
Html5
Satoshi Kikuchi
 
PDF
Class 2: CSS Selectors, Classes & Ids
Erika Tarte
 
PPTX
1812010023 web developement(ANKITA OJHA)CSE4(A).pptx
HarshJaiswal535013
 
PDF
Presentation on htmlcssjs-130221085257-phpapp02.pdf
MeetRajani2
 
PPTX
HTML Fundamentals
BG Java EE Course
 
PPTX
3 1-html-fundamentals-110302100520-phpapp02
Aditya Varma
 
PDF
CSS.pdf
SoniaJoshi25
 
PPTX
Web design and Development
Shagor Ahmed
 
PDF
How to create a basic template
vathur
 
PPTX
計算機概論20161205
志宇 許
 
DOCX
PHP HTML CSS Notes
Tushar Rajput
 
WEBSITE DESIGN AND DEVELOPMENT WITH CASCADING STYLE SHEETS(CSS)
brianbyamukama302
 
Intermediate Web Design
mlincol2
 
Slow kinda sucks
Tim Wright
 
Web Development , HTML & CSS & JAVASCRIPT
VENKATANAGABHUVANESH
 
Create Web Pages by programming of your chice.pdf
workingdev2003
 
What is CSS.pptx power point presentation
Coderkids
 
GDI Seattle Intermediate HTML and CSS Class 1
Heather Rock
 
Thinkful - Frontend Crash Course - Intro to HTML/CSS
TJ Stalcup
 
[SUTD GDSC] Intro to HTML and CSS
BeckhamWee
 
Class 2: CSS Selectors, Classes & Ids
Erika Tarte
 
1812010023 web developement(ANKITA OJHA)CSE4(A).pptx
HarshJaiswal535013
 
Presentation on htmlcssjs-130221085257-phpapp02.pdf
MeetRajani2
 
HTML Fundamentals
BG Java EE Course
 
3 1-html-fundamentals-110302100520-phpapp02
Aditya Varma
 
CSS.pdf
SoniaJoshi25
 
Web design and Development
Shagor Ahmed
 
How to create a basic template
vathur
 
計算機概論20161205
志宇 許
 
PHP HTML CSS Notes
Tushar Rajput
 
Ad

More from Colin Loretz (14)

PPTX
Controlling Robots with Javascript, Ruby and Go
Colin Loretz
 
PDF
Intro to HTML & CSS
Colin Loretz
 
PDF
Making Things Happen
Colin Loretz
 
PDF
Building App Themes for WordPress
Colin Loretz
 
PDF
Zen of WordPress
Colin Loretz
 
PDF
Steps to Open the Reno Makerspace
Colin Loretz
 
PDF
Reno Collective Coworking
Colin Loretz
 
PDF
WordCamp Las Vegas: Your App is in my WordPress
Colin Loretz
 
PDF
WordPress as a CMS
Colin Loretz
 
KEY
50 Apps to Fuel Your Online Business
Colin Loretz
 
KEY
Ignite Reno: Diagnosing Technology as a Mental Disorder
Colin Loretz
 
KEY
Creating Your First WordPress Plugin
Colin Loretz
 
KEY
Adobe Flex: Creating Widgets for the Desktop and Web
Colin Loretz
 
PDF
Share an internet connection through WiFi [Mac OS X[
Colin Loretz
 
Controlling Robots with Javascript, Ruby and Go
Colin Loretz
 
Intro to HTML & CSS
Colin Loretz
 
Making Things Happen
Colin Loretz
 
Building App Themes for WordPress
Colin Loretz
 
Zen of WordPress
Colin Loretz
 
Steps to Open the Reno Makerspace
Colin Loretz
 
Reno Collective Coworking
Colin Loretz
 
WordCamp Las Vegas: Your App is in my WordPress
Colin Loretz
 
WordPress as a CMS
Colin Loretz
 
50 Apps to Fuel Your Online Business
Colin Loretz
 
Ignite Reno: Diagnosing Technology as a Mental Disorder
Colin Loretz
 
Creating Your First WordPress Plugin
Colin Loretz
 
Adobe Flex: Creating Widgets for the Desktop and Web
Colin Loretz
 
Share an internet connection through WiFi [Mac OS X[
Colin Loretz
 

Recently uploaded (20)

PPTX
TestNG for Java Testing and Automation testing
ssuser0213cb
 
PPTX
Odoo Integration Services by Candidroot Solutions
CandidRoot Solutions Private Limited
 
PDF
Appium Automation Testing Tutorial PDF: Learn Mobile Testing in 7 Days
jamescantor38
 
PPTX
Visualising Data with Scatterplots in IBM SPSS Statistics.pptx
Version 1 Analytics
 
PPTX
GALILEO CRS SYSTEM | GALILEO TRAVEL SOFTWARE
philipnathen82
 
PDF
Protecting the Digital World Cyber Securit
dnthakkar16
 
PDF
Become an Agentblazer Champion Challenge
Dele Amefo
 
PPTX
classification of computer and basic part of digital computer
ravisinghrajpurohit3
 
PDF
Exploring AI Agents in Process Industries
amoreira6
 
PDF
Micromaid: A simple Mermaid-like chart generator for Pharo
ESUG
 
PDF
Key Features to Look for in Arizona App Development Services
Net-Craft.com
 
PPT
Why Reliable Server Maintenance Service in New York is Crucial for Your Business
Sam Vohra
 
PDF
Bandai Playdia The Book - David Glotz
BluePanther6
 
PPTX
Role Of Python In Programing Language.pptx
jaykoshti048
 
PPTX
ConcordeApp: Engineering Global Impact & Unlocking Billions in Event ROI with AI
chastechaste14
 
DOCX
Can You Build Dashboards Using Open Source Visualization Tool.docx
Varsha Nayak
 
PPTX
Presentation about variables and constant.pptx
kr2589474
 
PDF
On Software Engineers' Productivity - Beyond Misleading Metrics
Romén Rodríguez-Gil
 
PPTX
oapresentation.pptx
mehatdhavalrajubhai
 
PPTX
ASSIGNMENT_1[1][1][1][1][1] (1) variables.pptx
kr2589474
 
TestNG for Java Testing and Automation testing
ssuser0213cb
 
Odoo Integration Services by Candidroot Solutions
CandidRoot Solutions Private Limited
 
Appium Automation Testing Tutorial PDF: Learn Mobile Testing in 7 Days
jamescantor38
 
Visualising Data with Scatterplots in IBM SPSS Statistics.pptx
Version 1 Analytics
 
GALILEO CRS SYSTEM | GALILEO TRAVEL SOFTWARE
philipnathen82
 
Protecting the Digital World Cyber Securit
dnthakkar16
 
Become an Agentblazer Champion Challenge
Dele Amefo
 
classification of computer and basic part of digital computer
ravisinghrajpurohit3
 
Exploring AI Agents in Process Industries
amoreira6
 
Micromaid: A simple Mermaid-like chart generator for Pharo
ESUG
 
Key Features to Look for in Arizona App Development Services
Net-Craft.com
 
Why Reliable Server Maintenance Service in New York is Crucial for Your Business
Sam Vohra
 
Bandai Playdia The Book - David Glotz
BluePanther6
 
Role Of Python In Programing Language.pptx
jaykoshti048
 
ConcordeApp: Engineering Global Impact & Unlocking Billions in Event ROI with AI
chastechaste14
 
Can You Build Dashboards Using Open Source Visualization Tool.docx
Varsha Nayak
 
Presentation about variables and constant.pptx
kr2589474
 
On Software Engineers' Productivity - Beyond Misleading Metrics
Romén Rodríguez-Gil
 
oapresentation.pptx
mehatdhavalrajubhai
 
ASSIGNMENT_1[1][1][1][1][1] (1) variables.pptx
kr2589474
 

HTML & CSS 2017