SlideShare uma empresa Scribd logo
1 de 65
Web Design LSC: Class 10
Planning Your Site & More on HTML


Don Stanley
LSC 532




                              DON STANLEY | @3rhinomedia | 3rhinomedia.com
Why create your own site?




                 DON STANLEY | @3rhinomedia | 3rhinomedia.com
Why create your own site?




                 DON STANLEY | @3rhinomedia | 3rhinomedia.com
Getting Started




                  DON STANLEY | @3rhinomedia | 3rhinomedia.com
Step 1: Visualize




          DON STANLEY | @3rhinomedia | 3rhinomedia.com
Step 2: Info Arch




          DON STANLEY | @3rhinomedia | 3rhinomedia.com
Core Content for Site
What Should You Include on a Personal Site?




                              DON STANLEY | @3rhinomedia | 3rhinomedia.com
Start With Research
What content and designs do you think work?
»Dan Filler
»Mike Davidson
»Erick Danzer
»Jay Hafling
»Kim K
»Ricky Downs
»Gary Gale
»Bret Victor
»Chris Franco




                             DON STANLEY | @3rhinomedia | 3rhinomedia.com
Create Your Site Map
TO DO LIST:
»Start collecting design ideas
»Start collecting content
»Continue learning HTML




On to more HTML



                                 DON STANLEY | @3rhinomedia | 3rhinomedia.com
HTML STEP 2:
Working with Text
Learning HTML is like
learning a new language
TAGS DESCRIBE CONTENT




                  Creating a page
                  involves adding
                   tags to content
                     aka adding
                      “markup”
There are two types of
      markup...
STRUCTURAL   SEMANTIC
HEADINGS

                                           HTM L


<h1>This   is   a   Main Heading</h1>
<h2>This   is   a   level 2 heading</h2>
<h3>This   is   a   level 3 heading</h3>
<h4>This   is   a   level 4 heading</h4>
<h5>This   is   a   level 5 heading</h5>
<h6>This   is   a   level 6 heading</h6>
RESULT
PARAGRAPHS

                                        HTM L


<p>A paragraph consists of one or more
sentences that form a self-contained unit
of discourse. The start of a paragraph is
indicated by a new line.</p>

<p>Text is easier to understand when it is
split up into units of text. For example,
a book may have chapters. Chapters can
have subheadings. Under each heading will
be one or more paragraphs.</p>
RESULT
BOLD & ITALIC

                                       HTM L


<p>This is how we make a word appear
<strong>bold</strong>.</p>

<p>This is how we make a word appear
<em>italic</em>.</p>
RESULT
SUPERSCRIPT & SUBSCRIPT

                                         HTM L


<p>On the 4<sup>th</sup> September you
will learn about E=MC<sup>2</sup>.</p>

<p>The amount of C0<sub>2</sub> in the
atmosphere grew by 2ppm in
2009<sub>1</sub>.</p>
SUPERSCRIPT & SUBSCRIPT

                                         HTM L


<p>On the 4<sup>th</sup> September you
will learn about E=MC<sup>2</sup>.</p>

<p>The amount of C0<sub>2</sub> in the
atmosphere grew by 2ppm in
2009<sub>1</sub>.</p>
SUPERSCRIPT & SUBSCRIPT

                                         HTM L


<p>On the 4<sup>th</sup> September you
will learn about E=MC<sup>2</sup>.</p>

<p>The amount of C0<sub>2</sub> in the
atmosphere grew by 2ppm in
2009<sub>1</sub>.</p>
RESULT
WHITESPACE IS COLLAPSED

                                        HTM L


<p>The      moon is


         drifting     away   from the

  earth.</p>
RESULT
LINE BREAKS

                                          HTM L


<p>The Earth<br />gets one hundred tons
heavier every day<br />due to falling
space dust.</p>
LINE BREAKS

                                          HTM L


<p>The Earth<br />gets one hundred tons
heavier every day<br />due to falling
space dust.</p>
RESULT
HORIZONTAL RULES

                                          HTM L


<p>Venus is the only plant that rotates
clockwise</p>

<hr />

<p>Jupiter is bigger than all the other
planets combined.</p>
HORIZONTAL RULES

                                          HTM L


<p>Venus is the only plant that rotates
clockwise</p>

<hr />

<p>Jupiter is bigger than all the other
planets combined.</p>
RESULT
VISUAL EDITORS &
THEIR CODE VIEWS
VISUAL EDITORS &
THEIR CODE VIEWS
SEMANTIC MARKUP


WHAT IS IT?            WHY USE IT?          APPLICATION

Set of elements, for   Provides extra       Screen readers can
example:               information about    add emphasis to
                       your content         words in <em>
The <em> tag adds
emphasis               Do NOT use it to     Search engines
                       alter presentation   can find quotations
<blockquote>           of those elements    in <blockquote>
contains a quote
STRONG & EMPHASIS

                                         HTM L


<p><strong>Beware</strong> pickpockets
operate in this area.</p>

<p>I <em>think</em> Ivy was the first.</p>

<p>I think <em>Ivy</em> was the first.</p>

<p>I think Ivy was the <em>first</em>.</p>
RESULT
QUOTATIONS

                                      HTM L


<blockquote>
 <p>Did you ever stop to think, and
    forget to start again?</p>
</blockquote>
QUOTATIONS

                                     HTM L


<blockquote>
 <blockquote>
<p>Did you ever stop to think, and
    forget to start again?</p>
</blockquote>
</blockquote>
RESULT
ABBREVIATIONS & ACRONYMS

                                           HTM L


<p><abbr title="Professor”>Prof</abbr>
 Stephen Hawking is a theoretical
 physicist and cosmologist.</p>

<p><acronym title="National Aeronautics
and Space Administration">NASA</acronym>
do some crazy space stuff.</p>
ABBREVIATIONS & ACRONYMS

                                           HTM L


<p><abbr title="Professor">Prof</abbr>
 Stephen Hawking is a theoretical
 physicist and cosmologist.</p>

<p><acronym title="National Aeronautics
and Space Administration">NASA</acronym>
do some crazy space stuff.</p>
ABBREVIATIONS & ACRONYMS

                                           HTM L


<p><abbr title="Professor">Prof</abbr>
 Stephen Hawking is a theoretical
 physicist and cosmologist.</p>

<p><acronym title="National Aeronautics
and Space Administration">NASA</acronym>
do some crazy space stuff.</p>
RESULT
AUTHOR DETAILS

                                        HTM L


<address>
 <p><a href="homer@example.org">
  homer@example.org</a></p>
 <p>742 Evergreen Terrace, Springfield</p>
</address>
AUTHOR DETAILS

                                        HTM L


<address>
 <p><a href="homer@example.org">
  homer@example.org</a></p>
 <p>742 Evergreen Terrace, Springfield</p>
</address>
RESULT
CHANGES TO CONTENT

                                     HTM L


<p>It was the <del>worst</del>
 <ins>best</ins> idea she had ever
 had.</p>

<p>Laptop computer:</p>
<p><s>Was $995</s></p>
<p>Now only $375</p>
CHANGES TO CONTENT

                                     HTM L


<p>It was the <del>worst</del>
 <ins>best</ins> idea she had ever
 had.</p>

<p>Laptop computer:</p>
<p><s>Was $995</s></p>
<p>Now only $375</p>
CHANGES TO CONTENT

                                     HTM L


<p>It was the <del>worst</del>
 <ins>best</ins> idea she had ever
 had.</p>

<p>Laptop computer:</p>
<p><s>Was $995</s></p>
<p>Now only $375</p>
CHANGES TO CONTENT

                                     HTM L


<p>It was the <del>worst</del>
 <ins>best</ins> idea she had ever
 had.</p>

<p>Laptop computer:</p>
<p><s>Was $995</s></p>
<p>Now only $375</p>
RESULT
RESULT




HTML STEP 3:
   Lists
THREE LIST TYPES                                                  RESULT




      ORDERED                         UNORDERED                     DEFINITION


1. Chop potatoes into quarters   • 1kg King Edward potatoes   Sashimi
2. Simmer in salted water        • 100ml milk                    Sliced raw fish
3. Heat milk and butter          • 50g salted butter          Scale
4. Drain potatoes and mash       • Freshly grated nutmeg         A device used to
5. Mix in the milk mixture       • Salt and pepper to taste      accurately measure weight
ORDERED LISTS (numbered)                  RESULT




<ol>
  <li>Chop potatoes into quarters</li>
  <li>Simmer in salted water for 15-20
      minutes until tender</li>
  <li>Heat milk, butter and nutmeg</li>
  <li>Drain potatoes and mash</li>
  <li>Mix in the milk texture</li>
</ol>
RESULT
UNORDERED LISTS (bullets)             RESULT




<ul>
  <li>1kg King Edward potatoes</li>
<li>100ml milk</li> <li>50g salted
butter</li> <li>Freshly grated
nutmeg</li> <li>Salt and pepper to
taste</li>
</ul>
RESULT
DEFINITION LIST                       RESULT




<dl>
  <dt>Sashimi</dt> <dd>Sliced raw fish
served
       with condiments.</dd>
<dt>Scale</dt> <dd>Device used to measure
the weight       of ingredients.</dd>
<dd>A technique by which the scales are
       removed from the skin of fish.
</dd></dl>
RESULT
NESTED LIST                     RESULT




<ul>
  <li>Mousses</li>
  <li>Pastries</li>     <ul>
       <li>Croissant</li>
       <li>Milles-feille</li>
       <li>Palmier</li>
       <li>Profiteroles</li>
     </ul>
  <li>Tarts</li>
</ul>
RESULT
SUMMARY                        RESULT




  There are three types of
  HTML lists: ordered,
  unordered, and definition.
SUMMARY                                 RESULT




  Ordered Lists use #
  Unordered lists use bullets.
  Definition lists are used to define
  terminology.
  Lists can be nested.
Homework                        RESULT




  Collect Design Ideas
  Begin Crafting Content
  Work on W3Schools to learn HTML

Mais conteúdo relacionado

Semelhante a Class 10 Learning about Planning and More HTML

Comp 111chp iv vi
Comp 111chp iv viComp 111chp iv vi
Comp 111chp iv vi
Bala Ganesh
 

Semelhante a Class 10 Learning about Planning and More HTML (20)

Web Information Systems Lecture 2: HTML
Web Information Systems Lecture 2: HTMLWeb Information Systems Lecture 2: HTML
Web Information Systems Lecture 2: HTML
 
Introduction to Html by Ankitkumar Singh
Introduction to Html by Ankitkumar SinghIntroduction to Html by Ankitkumar Singh
Introduction to Html by Ankitkumar Singh
 
Comp 111chp iv vi
Comp 111chp iv viComp 111chp iv vi
Comp 111chp iv vi
 
HTML practical guide for O/L exam
HTML practical guide for O/L examHTML practical guide for O/L exam
HTML practical guide for O/L exam
 
Updated html programs
Updated html programsUpdated html programs
Updated html programs
 
All About HTML Web Development and its fundamentals
All About HTML Web Development and its fundamentalsAll About HTML Web Development and its fundamentals
All About HTML Web Development and its fundamentals
 
Hardcore HTML
Hardcore HTMLHardcore HTML
Hardcore HTML
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
HTML.ppt
HTML.pptHTML.ppt
HTML.ppt
 
Session no 1 html
Session no 1 htmlSession no 1 html
Session no 1 html
 
Web Design-III IT.ppt
Web Design-III IT.pptWeb Design-III IT.ppt
Web Design-III IT.ppt
 
HyperTextMarkupLanguage.ppt
HyperTextMarkupLanguage.pptHyperTextMarkupLanguage.ppt
HyperTextMarkupLanguage.ppt
 
HTML and ASP.NET
HTML and ASP.NETHTML and ASP.NET
HTML and ASP.NET
 
Semantic markup language
Semantic markup languageSemantic markup language
Semantic markup language
 
WTL1HTML-TEXT.ppt
WTL1HTML-TEXT.pptWTL1HTML-TEXT.ppt
WTL1HTML-TEXT.ppt
 
Html
HtmlHtml
Html
 
TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單
 
HTML_CSS02.pdf
HTML_CSS02.pdfHTML_CSS02.pdf
HTML_CSS02.pdf
 
Ifi7174 lesson1
Ifi7174 lesson1Ifi7174 lesson1
Ifi7174 lesson1
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 

Mais de Don Stanley

Don Stanley's LSC 432 s14 Intro to G+ and comment Posses
Don Stanley's LSC 432 s14 Intro to G+ and comment PossesDon Stanley's LSC 432 s14 Intro to G+ and comment Posses
Don Stanley's LSC 432 s14 Intro to G+ and comment Posses
Don Stanley
 
Don Stanley's Social Media Marketing Course LSC 432 Lecture 5
Don Stanley's Social Media Marketing Course LSC 432 Lecture 5Don Stanley's Social Media Marketing Course LSC 432 Lecture 5
Don Stanley's Social Media Marketing Course LSC 432 Lecture 5
Don Stanley
 
432 s14 lecture 2
432 s14 lecture 2432 s14 lecture 2
432 s14 lecture 2
Don Stanley
 
Lsc 532 s13 lecture 12 html images and uploading
Lsc 532 s13 lecture 12   html images and uploadingLsc 532 s13 lecture 12   html images and uploading
Lsc 532 s13 lecture 12 html images and uploading
Don Stanley
 
S13 lecture 11 html lists and links
S13 lecture 11   html lists and linksS13 lecture 11   html lists and links
S13 lecture 11 html lists and links
Don Stanley
 
Web Design Core Concepts
Web Design Core ConceptsWeb Design Core Concepts
Web Design Core Concepts
Don Stanley
 

Mais de Don Stanley (20)

Talk 1: Butter Braid Pastries Dealer Conference: What you need to know about ...
Talk 1: Butter Braid Pastries Dealer Conference: What you need to know about ...Talk 1: Butter Braid Pastries Dealer Conference: What you need to know about ...
Talk 1: Butter Braid Pastries Dealer Conference: What you need to know about ...
 
DreamBank Final Slide Deck for Attendees
DreamBank Final Slide Deck for AttendeesDreamBank Final Slide Deck for Attendees
DreamBank Final Slide Deck for Attendees
 
Slide Deck for My Intro to Visual Design Course
Slide Deck for My Intro to Visual Design CourseSlide Deck for My Intro to Visual Design Course
Slide Deck for My Intro to Visual Design Course
 
Business Blogging and Content Marketing 101
Business Blogging and Content Marketing 101 Business Blogging and Content Marketing 101
Business Blogging and Content Marketing 101
 
Don Stanley's LSC 432 s14 Intro to G+ and comment Posses
Don Stanley's LSC 432 s14 Intro to G+ and comment PossesDon Stanley's LSC 432 s14 Intro to G+ and comment Posses
Don Stanley's LSC 432 s14 Intro to G+ and comment Posses
 
Don Stanley's Social Media Marketing Course LSC 432 Lecture 5
Don Stanley's Social Media Marketing Course LSC 432 Lecture 5Don Stanley's Social Media Marketing Course LSC 432 Lecture 5
Don Stanley's Social Media Marketing Course LSC 432 Lecture 5
 
Don Stanley's Web Design 101 LSC 532 lecture 3
Don Stanley's Web Design 101 LSC 532 lecture 3Don Stanley's Web Design 101 LSC 532 lecture 3
Don Stanley's Web Design 101 LSC 532 lecture 3
 
Don Stanley's Social Media LSC 432 lecture 3
Don Stanley's Social Media LSC 432 lecture 3Don Stanley's Social Media LSC 432 lecture 3
Don Stanley's Social Media LSC 432 lecture 3
 
Class 2: Setting the foundation for a successful website design
Class 2: Setting the foundation for a successful website designClass 2: Setting the foundation for a successful website design
Class 2: Setting the foundation for a successful website design
 
432 s14 lecture 2
432 s14 lecture 2432 s14 lecture 2
432 s14 lecture 2
 
LECTURE 2: Don Stanley's Design Class LSC 332 @UW Madison
LECTURE 2: Don Stanley's Design Class LSC 332 @UW MadisonLECTURE 2: Don Stanley's Design Class LSC 332 @UW Madison
LECTURE 2: Don Stanley's Design Class LSC 332 @UW Madison
 
What is inbound marketing for cisco & cci
What is inbound marketing for cisco & cciWhat is inbound marketing for cisco & cci
What is inbound marketing for cisco & cci
 
Using Social Media for Emergency Agencies
Using Social Media for Emergency AgenciesUsing Social Media for Emergency Agencies
Using Social Media for Emergency Agencies
 
Lsc 532 s13 lecture 12 html images and uploading
Lsc 532 s13 lecture 12   html images and uploadingLsc 532 s13 lecture 12   html images and uploading
Lsc 532 s13 lecture 12 html images and uploading
 
Web Design LSC 532: Lecture 11
Web Design LSC 532: Lecture 11Web Design LSC 532: Lecture 11
Web Design LSC 532: Lecture 11
 
S13 lecture 11 html lists and links
S13 lecture 11   html lists and linksS13 lecture 11   html lists and links
S13 lecture 11 html lists and links
 
Don Stanley's Social Media Marketing Class 9
Don Stanley's Social Media Marketing Class 9Don Stanley's Social Media Marketing Class 9
Don Stanley's Social Media Marketing Class 9
 
Web Design Core Concepts
Web Design Core ConceptsWeb Design Core Concepts
Web Design Core Concepts
 
Social and Digital Media for Wisconsin Counties Association
Social and Digital Media for Wisconsin Counties AssociationSocial and Digital Media for Wisconsin Counties Association
Social and Digital Media for Wisconsin Counties Association
 
Social Media Marketing/Personal Branding Class 3
Social Media Marketing/Personal Branding Class 3Social Media Marketing/Personal Branding Class 3
Social Media Marketing/Personal Branding Class 3
 

Último

The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
heathfieldcps1
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
Chris Hunter
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
negromaestrong
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 

Último (20)

Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 

Class 10 Learning about Planning and More HTML

  • 1. Web Design LSC: Class 10 Planning Your Site & More on HTML Don Stanley LSC 532 DON STANLEY | @3rhinomedia | 3rhinomedia.com
  • 2. Why create your own site? DON STANLEY | @3rhinomedia | 3rhinomedia.com
  • 3. Why create your own site? DON STANLEY | @3rhinomedia | 3rhinomedia.com
  • 4. Getting Started DON STANLEY | @3rhinomedia | 3rhinomedia.com
  • 5. Step 1: Visualize DON STANLEY | @3rhinomedia | 3rhinomedia.com
  • 6. Step 2: Info Arch DON STANLEY | @3rhinomedia | 3rhinomedia.com
  • 7. Core Content for Site What Should You Include on a Personal Site? DON STANLEY | @3rhinomedia | 3rhinomedia.com
  • 8. Start With Research What content and designs do you think work? »Dan Filler »Mike Davidson »Erick Danzer »Jay Hafling »Kim K »Ricky Downs »Gary Gale »Bret Victor »Chris Franco DON STANLEY | @3rhinomedia | 3rhinomedia.com
  • 9. Create Your Site Map TO DO LIST: »Start collecting design ideas »Start collecting content »Continue learning HTML On to more HTML DON STANLEY | @3rhinomedia | 3rhinomedia.com
  • 10. HTML STEP 2: Working with Text
  • 11. Learning HTML is like learning a new language
  • 12. TAGS DESCRIBE CONTENT Creating a page involves adding tags to content aka adding “markup”
  • 13. There are two types of markup...
  • 14. STRUCTURAL SEMANTIC
  • 15. HEADINGS HTM L <h1>This is a Main Heading</h1> <h2>This is a level 2 heading</h2> <h3>This is a level 3 heading</h3> <h4>This is a level 4 heading</h4> <h5>This is a level 5 heading</h5> <h6>This is a level 6 heading</h6>
  • 17. PARAGRAPHS HTM L <p>A paragraph consists of one or more sentences that form a self-contained unit of discourse. The start of a paragraph is indicated by a new line.</p> <p>Text is easier to understand when it is split up into units of text. For example, a book may have chapters. Chapters can have subheadings. Under each heading will be one or more paragraphs.</p>
  • 19. BOLD & ITALIC HTM L <p>This is how we make a word appear <strong>bold</strong>.</p> <p>This is how we make a word appear <em>italic</em>.</p>
  • 21. SUPERSCRIPT & SUBSCRIPT HTM L <p>On the 4<sup>th</sup> September you will learn about E=MC<sup>2</sup>.</p> <p>The amount of C0<sub>2</sub> in the atmosphere grew by 2ppm in 2009<sub>1</sub>.</p>
  • 22. SUPERSCRIPT & SUBSCRIPT HTM L <p>On the 4<sup>th</sup> September you will learn about E=MC<sup>2</sup>.</p> <p>The amount of C0<sub>2</sub> in the atmosphere grew by 2ppm in 2009<sub>1</sub>.</p>
  • 23. SUPERSCRIPT & SUBSCRIPT HTM L <p>On the 4<sup>th</sup> September you will learn about E=MC<sup>2</sup>.</p> <p>The amount of C0<sub>2</sub> in the atmosphere grew by 2ppm in 2009<sub>1</sub>.</p>
  • 25. WHITESPACE IS COLLAPSED HTM L <p>The moon is drifting away from the earth.</p>
  • 27. LINE BREAKS HTM L <p>The Earth<br />gets one hundred tons heavier every day<br />due to falling space dust.</p>
  • 28. LINE BREAKS HTM L <p>The Earth<br />gets one hundred tons heavier every day<br />due to falling space dust.</p>
  • 30. HORIZONTAL RULES HTM L <p>Venus is the only plant that rotates clockwise</p> <hr /> <p>Jupiter is bigger than all the other planets combined.</p>
  • 31. HORIZONTAL RULES HTM L <p>Venus is the only plant that rotates clockwise</p> <hr /> <p>Jupiter is bigger than all the other planets combined.</p>
  • 35. SEMANTIC MARKUP WHAT IS IT? WHY USE IT? APPLICATION Set of elements, for Provides extra Screen readers can example: information about add emphasis to your content words in <em> The <em> tag adds emphasis Do NOT use it to Search engines alter presentation can find quotations <blockquote> of those elements in <blockquote> contains a quote
  • 36. STRONG & EMPHASIS HTM L <p><strong>Beware</strong> pickpockets operate in this area.</p> <p>I <em>think</em> Ivy was the first.</p> <p>I think <em>Ivy</em> was the first.</p> <p>I think Ivy was the <em>first</em>.</p>
  • 38. QUOTATIONS HTM L <blockquote> <p>Did you ever stop to think, and forget to start again?</p> </blockquote>
  • 39. QUOTATIONS HTM L <blockquote> <blockquote> <p>Did you ever stop to think, and forget to start again?</p> </blockquote> </blockquote>
  • 41. ABBREVIATIONS & ACRONYMS HTM L <p><abbr title="Professor”>Prof</abbr> Stephen Hawking is a theoretical physicist and cosmologist.</p> <p><acronym title="National Aeronautics and Space Administration">NASA</acronym> do some crazy space stuff.</p>
  • 42. ABBREVIATIONS & ACRONYMS HTM L <p><abbr title="Professor">Prof</abbr> Stephen Hawking is a theoretical physicist and cosmologist.</p> <p><acronym title="National Aeronautics and Space Administration">NASA</acronym> do some crazy space stuff.</p>
  • 43. ABBREVIATIONS & ACRONYMS HTM L <p><abbr title="Professor">Prof</abbr> Stephen Hawking is a theoretical physicist and cosmologist.</p> <p><acronym title="National Aeronautics and Space Administration">NASA</acronym> do some crazy space stuff.</p>
  • 45. AUTHOR DETAILS HTM L <address> <p><a href="homer@example.org"> homer@example.org</a></p> <p>742 Evergreen Terrace, Springfield</p> </address>
  • 46. AUTHOR DETAILS HTM L <address> <p><a href="homer@example.org"> homer@example.org</a></p> <p>742 Evergreen Terrace, Springfield</p> </address>
  • 48. CHANGES TO CONTENT HTM L <p>It was the <del>worst</del> <ins>best</ins> idea she had ever had.</p> <p>Laptop computer:</p> <p><s>Was $995</s></p> <p>Now only $375</p>
  • 49. CHANGES TO CONTENT HTM L <p>It was the <del>worst</del> <ins>best</ins> idea she had ever had.</p> <p>Laptop computer:</p> <p><s>Was $995</s></p> <p>Now only $375</p>
  • 50. CHANGES TO CONTENT HTM L <p>It was the <del>worst</del> <ins>best</ins> idea she had ever had.</p> <p>Laptop computer:</p> <p><s>Was $995</s></p> <p>Now only $375</p>
  • 51. CHANGES TO CONTENT HTM L <p>It was the <del>worst</del> <ins>best</ins> idea she had ever had.</p> <p>Laptop computer:</p> <p><s>Was $995</s></p> <p>Now only $375</p>
  • 54. THREE LIST TYPES RESULT ORDERED UNORDERED DEFINITION 1. Chop potatoes into quarters • 1kg King Edward potatoes Sashimi 2. Simmer in salted water • 100ml milk Sliced raw fish 3. Heat milk and butter • 50g salted butter Scale 4. Drain potatoes and mash • Freshly grated nutmeg A device used to 5. Mix in the milk mixture • Salt and pepper to taste accurately measure weight
  • 55. ORDERED LISTS (numbered) RESULT <ol> <li>Chop potatoes into quarters</li> <li>Simmer in salted water for 15-20 minutes until tender</li> <li>Heat milk, butter and nutmeg</li> <li>Drain potatoes and mash</li> <li>Mix in the milk texture</li> </ol>
  • 57. UNORDERED LISTS (bullets) RESULT <ul> <li>1kg King Edward potatoes</li> <li>100ml milk</li> <li>50g salted butter</li> <li>Freshly grated nutmeg</li> <li>Salt and pepper to taste</li> </ul>
  • 59. DEFINITION LIST RESULT <dl> <dt>Sashimi</dt> <dd>Sliced raw fish served with condiments.</dd> <dt>Scale</dt> <dd>Device used to measure the weight of ingredients.</dd> <dd>A technique by which the scales are removed from the skin of fish. </dd></dl>
  • 61. NESTED LIST RESULT <ul> <li>Mousses</li> <li>Pastries</li> <ul> <li>Croissant</li> <li>Milles-feille</li> <li>Palmier</li> <li>Profiteroles</li> </ul> <li>Tarts</li> </ul>
  • 63. SUMMARY RESULT There are three types of HTML lists: ordered, unordered, and definition.
  • 64. SUMMARY RESULT Ordered Lists use # Unordered lists use bullets. Definition lists are used to define terminology. Lists can be nested.
  • 65. Homework RESULT Collect Design Ideas Begin Crafting Content Work on W3Schools to learn HTML

Notas do Editor

  1. Explain: There are six levels of heading. &lt;h1&gt; is shown the largest and &lt;h6&gt; is shown the smallest. The &quot;h&quot; in the tag name stands for the word &quot;heading&quot;.
  2. Explain: The &lt;p&gt; tag is used for paragraphs of text. You now have basic structure of headings and paragraphs of text. This is another example of how the letters in the tags describe the purpose of the tag. That is, the &quot;p&quot; in this tag stands for the word &quot;paragraph&quot;.
  3. Please note: The &lt;strong&gt; and &lt;em&gt; tags are described in a later section talking about semantic markup. It can be confusing to introduce this too early as beginners are more familiar with concepts of bold and italic.
  4. Explain: Multiple spaces get collapsed into a single space. (As students will see later, this allows you to add space into code to make it more readable.)
  5. Explain: This tag is not to be used to separate paragraphs. That is what the &lt;p&gt; element is for.
  6. Explain: This is a WYSIWYG editor. WYSIWYG stands for &quot;What You See Is What You Get&quot;. These are commonly used in content management systems and blogging tools.
  7. Explain: There is often an HTML editor that sits alongside the WYSIWIG editor, so you can edit the source code directly.
  8. Explain: Some elements add semantic information about the document. Click: What is semantic markup? Click: Why use semantic markup (note not to be used just for visual effect) Click: Examples of how this markup could be used
  9. Note: The &lt;acronym&gt; tag has been dropped from HTML5 (which just uses &lt;abbr&gt;).
  10. Note: This tag is for the author of a given web page only, not for general address details. (For those, coders may use microformats.)
  11. Explain: None of these tags are to be used just for visual effect. CSS offers that option. Note: There was a &lt;u&gt; element in older versions of HTML.
  12. Explain: This tag is not really for content that was supposed to be deleted.
  13. Explain: There are three different types of list... 1. Ordered - The order of list items is important 2. Unordered - The order of list items is not important 3. Definition - To explain the meaning of terms
  14. Explain: What tags stand for: &lt;ol&gt; = ordered list &lt;li&gt; = list item Re-iterate that the sequence of the steps in a recipe is important, therefore we use an ordered list
  15. Explain: What tags stand for: &lt;ul&gt; = unordered list &lt;li&gt; = list item Re-iterate that there is not sequence to these items, therefore unordered list
  16. Explain: What tags stand for: &lt;dl&gt; = definition list &lt;dt&gt; = definition term &lt;dd&gt; = definition description
  17. Explain how you can nest lists inside other lists You can do the same for ordered lists to create sub-points
  18. Clicks: Load individual bullets
  19. Clicks: Load individual bullets
  20. Clicks: Load individual bullets