Movatterモバイル変換


[0]ホーム

URL:


Colin Loretz, profile picture
Uploaded byColin Loretz
PDF, PPTX815 views

Intro to HTML & CSS

The document discusses HTML elements and CSS properties for styling web pages. It covers basic HTML tags for structure like <html>, <head>, <body>, <p>, <h1>-<h6>, <div>, <span>, <table>, <ul>, <li> as well as CSS properties for styling like font, color, background, padding, margin, float. It also introduces the box model and shorthand CSS properties.

Embed presentation

Download as PDF, PPTX
WEB 101HTML & CSS
TOOLS OFTHE TRADE
CODA
TEXT WRANGLER
TExTMATE
EXPRESSION WEB
DREAMWEAVER
BROWSERS the big four
BUILDINGTHE FOUNDATION
HTMLbuilding blocks
<html> html tag
<html></html>
<head>head definitions
<html>  <head>  </head></html>
<title> page title
<html>  <head>    <title>Our Page</title>  </head></html>
<body>document body
<html>  <head>    <title>Our Page</title>  </head>  <body>  </body></html>
<!-- # -->   comments
<html>  <head>    <title>Our Page</title>  </head>  <body>    <!-- code body here -->  </body></html>
<p>paragraph tag
<p>My paragraph</p>
<br>line break
<br /> line break
<p>My<br /> paragraph</p>
<h1>heading tag
<h2>heading tag
<h3>heading tag
<h4>heading tag
<h5>heading tag
<h1>  Important heading</h1><h3>  Less important heading</h3>
<small>small font style tag
<p>  Some text  <small>     some smaller text  </small></p>
<div>division/container tag
<div>  <h3>My section</h3>  <p>Lorem ipsum</p></div>
<span>inline container
<p>  Some<span>thing</span></p>
BUILD TIME
<ul>unordered list
<li>list item
<ul>  <li>item 1</li>  <li>item 2</li></ul>
<table>table definition
<thead> table header
<th>table header cell
<tbody> table body
<tr>table row
<td>table cell
<tfoot> table footer
<table>  <thead>    <th>Name</th>    <th>Price</th>  </thead>  <tbody>    <tr>      <td>Latte</td>      <td>$3.95</td>    </tr>  </tbody></table>
NAMINGCONVENTION
ids
singular
<div id = “intro”>  Some text</div>
classes
many
<div class = “product”>  Some text</div>
SEMANTIC  WEB
less > MORE
SELFdocumenting
BUILD TIME
ADDING STYLE
stylesheets
.css files
selectors
h2 { ... }li { ... }p { ... }by element
.products      { ... }li.products    { ... }li .products   { ... }      by class
#intro       { ... }div#intro    { ... }div #intro   { ... }        by ID
#intro ul.products li{ ... }  mix and match
style options
structure
height  50px;
width: 100px;
margin:5px 5px 5px 5px
WAIT!
introducing the box model
margin     padding          height                   width
padding: 5px 5px 5px 5px
div {  height: 50px;  width: 100px;  padding: 5px 10px 5px 10px;  margin: 5px 10px 5px 10px;}
5px                     5px10px   10px   50px           10px   10px                     100px                     5px                      5px
HEIGHTHeight + padding-top + padding-bottom +       margin-top + margin-bottom    50px + 5px + 5px + 5px + 5px =              70px              WIDTHWidth + padding-left + padding-right +      margin-left + margin-right50px + 10px + 10px + 10px + 10px =              90px
div {  margin: top right bottom left;}div {  margin: 5px 10px 5px 10px;}
Shorthanddiv {  margin: 5px 10px;}div {  margin: 5px;}
OK!
BUILD TIME
FLOATS
div {  float: left;}div {  float: right;}
fonts
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;
BUILD TIME

Recommended

PDF
Class 4 handout two column layout w mobile web design
PDF
響應式網頁實作坊
PDF
Sensational css how to show off your super sweet
PDF
Class 3 create an absolute layout with css abs position (aptana)
PDF
Tao of CSS
PDF
CSS Extenders
PDF
Zen of WordPress
KEY
Adobe Flex: Creating Widgets for the Desktop and Web
PPT
Introduction to HTML
PDF
CSS in all its Glory
PDF
HTML & CSS 2017
PDF
Static layouts with css
KEY
Css Essential
PPTX
Html structure
 
PDF
Sassive Aggressive: Using Sass to Make Your Life Easier (NSWG Version)
KEY
Messy css
PPTX
Hammersmith fundamentals html fundamentals
PDF
GDI Seattle Intro to HTML and CSS - Class 3
KEY
Demystifying CSS & WordPress
ODP
Cascading Style Sheets - Part 02
ODP
Cascading Style Sheets - Part 01
PPT
CSS Basics
DOCX
Html n css tutorial
ODP
Creating Web Sites with HTML and CSS
PDF
Layout with CSS
PPTX
Css for Development
PDF
Think Vitamin CSS
PPTX
Controlling Robots with Javascript, Ruby and Go
PDF
Making Things Happen

More Related Content

PDF
Class 4 handout two column layout w mobile web design
PDF
響應式網頁實作坊
PDF
Sensational css how to show off your super sweet
PDF
Class 3 create an absolute layout with css abs position (aptana)
PDF
Tao of CSS
PDF
CSS Extenders
PDF
Zen of WordPress
KEY
Adobe Flex: Creating Widgets for the Desktop and Web
Class 4 handout two column layout w mobile web design
響應式網頁實作坊
Sensational css how to show off your super sweet
Class 3 create an absolute layout with css abs position (aptana)
Tao of CSS
CSS Extenders
Zen of WordPress
Adobe Flex: Creating Widgets for the Desktop and Web

Similar to Intro to HTML & CSS

PPT
Introduction to HTML
PDF
CSS in all its Glory
PDF
HTML & CSS 2017
PDF
Static layouts with css
KEY
Css Essential
PPTX
Html structure
 
PDF
Sassive Aggressive: Using Sass to Make Your Life Easier (NSWG Version)
KEY
Messy css
PPTX
Hammersmith fundamentals html fundamentals
PDF
GDI Seattle Intro to HTML and CSS - Class 3
KEY
Demystifying CSS & WordPress
ODP
Cascading Style Sheets - Part 02
ODP
Cascading Style Sheets - Part 01
PPT
CSS Basics
DOCX
Html n css tutorial
ODP
Creating Web Sites with HTML and CSS
PDF
Layout with CSS
PPTX
Css for Development
PDF
Think Vitamin CSS
Introduction to HTML
CSS in all its Glory
HTML & CSS 2017
Static layouts with css
Css Essential
Html structure
 
Sassive Aggressive: Using Sass to Make Your Life Easier (NSWG Version)
Messy css
Hammersmith fundamentals html fundamentals
GDI Seattle Intro to HTML and CSS - Class 3
Demystifying CSS & WordPress
Cascading Style Sheets - Part 02
Cascading Style Sheets - Part 01
CSS Basics
Html n css tutorial
Creating Web Sites with HTML and CSS
Layout with CSS
Css for Development
Think Vitamin CSS

More from Colin Loretz

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

Recently uploaded

PDF
Day 1 - Cloud Security Strategy and Planning ~ 2nd Sight Lab ~ Cloud Security...
PPTX
Building Cyber Resilience for 2026: Best Practices for a Secure, AI-Driven Bu...
PDF
Eredità digitale sugli smartphone: cosa resta di noi nei dispositivi mobili
PPTX
Unit-4-ARTIFICIAL NEURAL NETWORKS.pptx ANN ppt Artificial neural network
PPTX
THIS IS CYBER SECURITY NOTES USED IN CLASS ON VARIOUS TOPICS USED IN CYBERSEC...
PDF
Usage Control for Process Discovery through a Trusted Execution Environment
PDF
TrustArc Webinar - Looking Ahead: The 2026 Privacy Landscape
PDF
Day 2 - Network Security ~ 2nd Sight Lab ~ Cloud Security Class ~ 2020
PPT
software-security-intro in information security.ppt
PDF
Internet_of_Things_IoT_for_Next_Generation_Smart_Systems_Utilizing.pdf
PPTX
cybercrime in Information security .pptx
PDF
Digit Expo 2025 - EICC Edinburgh 27th November
PDF
DevFest El Jadida 2025 - Product Thinking
PDF
Energy Storage Landscape Clean Energy Ministerial
PDF
API-First Architecture in Financial Systems
PPTX
wob-report.pptxwob-report.pptxwob-report.pptx
PPTX
Chapter 3 Introduction to number system.pptx
PPTX
Data Privacy and Protection: Safeguarding Information in a Connected World
PPTX
Cloud-and-AI-Platform-FY26-Partner-Playbook.pptx
PPTX
Coded Agents – with UiPath SDK + LangGraph [Virtual Hands-on Workshop]
Day 1 - Cloud Security Strategy and Planning ~ 2nd Sight Lab ~ Cloud Security...
Building Cyber Resilience for 2026: Best Practices for a Secure, AI-Driven Bu...
Eredità digitale sugli smartphone: cosa resta di noi nei dispositivi mobili
Unit-4-ARTIFICIAL NEURAL NETWORKS.pptx ANN ppt Artificial neural network
THIS IS CYBER SECURITY NOTES USED IN CLASS ON VARIOUS TOPICS USED IN CYBERSEC...
Usage Control for Process Discovery through a Trusted Execution Environment
TrustArc Webinar - Looking Ahead: The 2026 Privacy Landscape
Day 2 - Network Security ~ 2nd Sight Lab ~ Cloud Security Class ~ 2020
software-security-intro in information security.ppt
Internet_of_Things_IoT_for_Next_Generation_Smart_Systems_Utilizing.pdf
cybercrime in Information security .pptx
Digit Expo 2025 - EICC Edinburgh 27th November
DevFest El Jadida 2025 - Product Thinking
Energy Storage Landscape Clean Energy Ministerial
API-First Architecture in Financial Systems
wob-report.pptxwob-report.pptxwob-report.pptx
Chapter 3 Introduction to number system.pptx
Data Privacy and Protection: Safeguarding Information in a Connected World
Cloud-and-AI-Platform-FY26-Partner-Playbook.pptx
Coded Agents – with UiPath SDK + LangGraph [Virtual Hands-on Workshop]

Intro to HTML & CSS


[8]ページ先頭

©2009-2025 Movatter.jp