SlideShare ist ein Scribd-Unternehmen logo
1 von 8
HTML BOOTCAMP




How a Website Works:




1|Page                 Need help? Contact us:www.MayeCreate.com | info@mayecreate.com | (573) 447-1836
HTML BOOTCAMP




HTML Tags          In Theory:    <tag>visible stuff</tag>

                            a      (anchor) used for links &anchors

                      address      Wraps an address

                  blockquote       Wraps quotes or long citations

                         body      The visible information

                           br      Soft line break

                           div     Division, like a box

                          em       Makes text italics

         h1, h2, h3, h4, h5&h6     Headings

                         head      Contains invisible info

                         html      Starts & ends web page

                          img      Image [src, height, width]

                            li     List item
                                                                                           New in HTML 5*:
                          link     Links stylesheets inside head
                                                                                           nav – for navigation
                            ol     Ordered list (1, 2, 3
)
                                                                                           article – post or content
                            p      paragraph
                                                                                           figure – one or more
                                                                                               images
                         span      used for inline styling (mostly CSS)
                                                                                           section – section of page,
                       strong      makes text bold
                                                                                               or chapter of an article
                         style     starts CSS, inside head
                                                                                           aside – un-necessary info
                                                                                               like sidebars,
                         title     words in tab thingy, in head
                                                                                               comments and
                                                                                               footnotes
                            ul     un-ordered (bulleted) list




2|Page                                         Need help? Contact us:www.MayeCreate.com | info@mayecreate.com | (573) 447-1836
HTML BOOTCAMP




  ___________'s Letter Home

  A Letter Home

  From _________________, HTML Bootcamper

  307 Locust Street
  Columbia, MO 65201

  Dear ____________________,

  I'm having a great time at HTML Bootcamp today! My advisor is Marie Newell. She has been a part of Camp
  MayeCreate since June 2010.

  So far today I have done the following three things:

      gotten unpacked
      met the campers
      made a pot holder for you

  I'm really looking forward to teaching the following three things:

      ______________________________________________________________________________________

      ______________________________________________________________________________________

      ______________________________________________________________________________________

  Here's a picture:

                          Can't wait to show you all the stuff I'm doing! I'm thinking about signing up for the
                          WordPress camp next month

                          Sincerely,

                          _________________________

                          _________________________@_________________________




3|Page                                            Need help? Contact us:www.MayeCreate.com | info@mayecreate.com | (573) 447-1836
HTML BOOTCAMP




   <html>
   <head>
   <title>Marie's Letter Home</title>
   </head>
   <body>
   <h2>A Letter Home</h1>
   <h2>From Marie Newell, HTML Bootcamper</h1>
   <p>307 Locust Street<br />Columbia, MO 65201</p>
   <p><strong>Dear Clayton,<strong></p>
   <p>I'm having a great time at HTML Bootcamp today! I'm the advisor in charge. As you know, I've been a part of
Camp MayeCreate since June 2010.</p>
   <p>So far today I have done the following three things:
   <ol><li>gotten unpacked</li>
       <Ii>met the campers</li>
   <li>made a pot holder for you</li>
   </ol>
   </p>
   <p>I'm really looking forward to teaching the following three things:
       <ul><li>how to make links to other pages</li>
       <li>how to insert images</li>
   <li>how to change colors</li>
   </ul>
   </p>
   <p>Here's a picture:<br />
   <imgsrc="../images/lunchnlearn.png" /></p>
   <p>An apple a day keeps MayeCreate at the top of their game!</p>
<p>Can't wait to show you all the stuff I'm doing! I'm thinking about signing up for <a
   href="http://www.mayecreate.com/2011/04/flash-back-to-wordpress/" target="_blank">the WordPress camp next
   month</a>.</p>
   <p>Sincerely,<br />
   <em>Marie Newell</strong>br />
   <a href="mailto:marie@mayecreate.com" marie@mayecreate.com</a></p>
   </body>
   </html>


4|Page                                             Need help? Contact us:www.MayeCreate.com | info@mayecreate.com | (573) 447-1836
HTML BOOTCAMP




  Links
  <a href=“destination/action”>What people click on</a>

  Composed of 3 parts:
        Anchor tag: <a>
        href attribute: href=“” (inside the starting anchor tag – defines destination/action)
        Content that people click on (must be in between anchor starting and closing tags)

  Types of Links:

     To a website/webpage:

          <a href=“http://www.mayecreate.com/”>Our Website</a>

     To an email address:

          <a href=“mailto:info@mayecreate.com”>Email Us!</a>

     For a phone number:

          <a href=“tel:5734471836”>Call Us!</a>

  Open a link in a new window: add target=“_blank” inside the starting anchor tag


  Images
     <imgsrc=“url for image to be used” height=“# in pixels” width=“# in pixels” />
     Composed of 4 parts:
          1. img tag
          2. src attribute = url for the image to be used
          3. height in pixels (optional)
          4. width in pixels (optional)

  CSS - Inline Styles

  Inside the tag you are talking to, insert style=“styles go here”

  Find more information about styles in an external stylesheet online:http://www.w3schools.com/css/



5|Page                                             Need help? Contact us:www.MayeCreate.com | info@mayecreate.com | (573) 447-1836
HTML BOOTCAMP




  Color codes consist of a hash symbol (#) and 6 characters. These characters can be digits (0-9) or letters (A-F)
  Common codes: #FFFFFF = white, #000000=black        style=”color:#000000;”




6|Page                                           Need help? Contact us:www.MayeCreate.com | info@mayecreate.com | (573) 447-1836
HTML BOOTCAMP




  Universal Font Families:
       Verdana, Geneva, sans-serif
       Georgia, Times New Roman, Times, serif                            style=”font-family:Tahoma, sans-serif;”
       Courier New, Courier, monospace
       Arial, Helvetica, sans-serif
       Tahoma, Geneva, sans-serif
       Trebuchet MS, Arial, Helvetica, sans-serif
       Palatino Linotype, Book Antiqua, Palatino, serif
       Lucida Sans Unicode, Lucida Grand, sans-serif

  span
  Can be used anywhere within another tag to talk to specific text or elements

  div
  They can be nested
  The end tag closes the open div immediately before it
  Example:
  <div>
        <div class=“column1”>Contents in column 1</div>
        <div class=“column2”>
                 Contents of column 2
        </div>
  </div>


  Float    You can float left, right, or none



      style=”float:left;”                                                                              style=”float:right;”



      style=”float:none;”




7|Page                                               Need help? Contact us:www.MayeCreate.com | info@mayecreate.com | (573) 447-1836
HTML BOOTCAMP




  Additional Resources:
  HTML Dog - http://htmldog.com/
  Don’t Fear the Internet - http://www.dontfeartheinternet.com/
  HTML5:
         W3 Schools: http://www.w3schools.com/html5/default.asp
         WDL – Essentials & Good Practices:
         http://webdesignledger.com/tips/html5-essentials-and-good-practices
         Validator: http://html5.validator.nu/

  Text Editors:
         Text Wrangler (MAC):
         http://www.barebones.com/products/TextWrangler/download.html
         Komodo Edit (PC): http://www.activestate.com/komodo-edit
         Adobe Dreamweaver: http://www.adobe.com/products/dreamweaver.html

  CSS - http://www.w3schools.com/css/




8|Page                                Need help? Contact us:www.MayeCreate.com | info@mayecreate.com | (573) 447-1836

Weitere Àhnliche Inhalte

Was ist angesagt?

Web design-workflow
Web design-workflowWeb design-workflow
Web design-workflow
Peter Kaizer
 
Seo Web Developer Cheat Sheet
Seo Web Developer Cheat SheetSeo Web Developer Cheat Sheet
Seo Web Developer Cheat Sheet
jrutter12
 
How to create a basic template
How to create a basic templateHow to create a basic template
How to create a basic template
vathur
 
Evaluation online website(Hanaa)
Evaluation online website(Hanaa)Evaluation online website(Hanaa)
Evaluation online website(Hanaa)
H S
 
Are you accessible
Are you accessibleAre you accessible
Are you accessible
Geri Druckman
 
GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1
Heather Rock
 

Was ist angesagt? (20)

Web design-workflow
Web design-workflowWeb design-workflow
Web design-workflow
 
HTML CSS & Javascript
HTML CSS & JavascriptHTML CSS & Javascript
HTML CSS & Javascript
 
Seo Web Developer Cheat Sheet
Seo Web Developer Cheat SheetSeo Web Developer Cheat Sheet
Seo Web Developer Cheat Sheet
 
CSS
CSSCSS
CSS
 
Web Service Creation in HTML5
Web Service Creation in HTML5Web Service Creation in HTML5
Web Service Creation in HTML5
 
Meta tag creation
Meta tag creationMeta tag creation
Meta tag creation
 
Less
LessLess
Less
 
How to create a basic template
How to create a basic templateHow to create a basic template
How to create a basic template
 
From Photoshop to Drupal Theme (DrupalCon San Francisco 2010)
From Photoshop to Drupal Theme (DrupalCon San Francisco 2010)From Photoshop to Drupal Theme (DrupalCon San Francisco 2010)
From Photoshop to Drupal Theme (DrupalCon San Francisco 2010)
 
Progressive Prototyping w/HTML5, CSS3 and jQuery
Progressive Prototyping w/HTML5, CSS3 and jQueryProgressive Prototyping w/HTML5, CSS3 and jQuery
Progressive Prototyping w/HTML5, CSS3 and jQuery
 
Html5 ux london
Html5 ux londonHtml5 ux london
Html5 ux london
 
Advanced CSS Troubleshooting
Advanced CSS TroubleshootingAdvanced CSS Troubleshooting
Advanced CSS Troubleshooting
 
HTML and CSS Coding Standards
HTML and CSS Coding StandardsHTML and CSS Coding Standards
HTML and CSS Coding Standards
 
Evaluation online website(Hanaa)
Evaluation online website(Hanaa)Evaluation online website(Hanaa)
Evaluation online website(Hanaa)
 
Are you accessible
Are you accessibleAre you accessible
Are you accessible
 
SEO for Developers
SEO for DevelopersSEO for Developers
SEO for Developers
 
ePUB 3 and Publishing e-books
ePUB 3 and Publishing e-booksePUB 3 and Publishing e-books
ePUB 3 and Publishing e-books
 
How To Build An Accessible Web Application - a11yBos
How To Build An Accessible Web Application - a11yBosHow To Build An Accessible Web Application - a11yBos
How To Build An Accessible Web Application - a11yBos
 
Guide Hosting Dictionary
Guide Hosting DictionaryGuide Hosting Dictionary
Guide Hosting Dictionary
 
GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1
 

Ähnlich wie Campers Packet

CSS Layout Tutorial
CSS Layout TutorialCSS Layout Tutorial
CSS Layout Tutorial
hstryk
 
Html:css crash course (4:5)
Html:css crash course (4:5)Html:css crash course (4:5)
Html:css crash course (4:5)
Thinkful
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.doc
butest
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.doc
butest
 
Slice and Dice
Slice and DiceSlice and Dice
Slice and Dice
Doncho Minkov
 
Web Design Bootcamp - Day1
Web Design Bootcamp - Day1Web Design Bootcamp - Day1
Web Design Bootcamp - Day1
Aslam Najeebdeen
 

Ähnlich wie Campers Packet (20)

HTML5- Create divisions in a web page
HTML5- Create divisions in a web pageHTML5- Create divisions in a web page
HTML5- Create divisions in a web page
 
Intro To Twitter Bootstrap
Intro To Twitter BootstrapIntro To Twitter Bootstrap
Intro To Twitter Bootstrap
 
CSS Layout Tutorial
CSS Layout TutorialCSS Layout Tutorial
CSS Layout Tutorial
 
Css
CssCss
Css
 
Html:css crash course (4:5)
Html:css crash course (4:5)Html:css crash course (4:5)
Html:css crash course (4:5)
 
Theme Kickstart
Theme KickstartTheme Kickstart
Theme Kickstart
 
The Future is Modular, Jonathan Snook
The Future is Modular, Jonathan SnookThe Future is Modular, Jonathan Snook
The Future is Modular, Jonathan Snook
 
HTML5 & CSS3 Flag
HTML5 & CSS3 FlagHTML5 & CSS3 Flag
HTML5 & CSS3 Flag
 
Css types internal, external and inline (1)
Css types internal, external and inline (1)Css types internal, external and inline (1)
Css types internal, external and inline (1)
 
Le Wagon - Landing page
Le Wagon - Landing pageLe Wagon - Landing page
Le Wagon - Landing page
 
HTML Bootcamp
HTML BootcampHTML Bootcamp
HTML Bootcamp
 
Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.doc
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.doc
 
Website development using dreamweaver
Website development using dreamweaverWebsite development using dreamweaver
Website development using dreamweaver
 
Slice and Dice
Slice and DiceSlice and Dice
Slice and Dice
 
Web Design Bootcamp - Day1
Web Design Bootcamp - Day1Web Design Bootcamp - Day1
Web Design Bootcamp - Day1
 
ViA Bootstrap 4
ViA Bootstrap 4ViA Bootstrap 4
ViA Bootstrap 4
 
Your First Wordpress Theme
Your First Wordpress ThemeYour First Wordpress Theme
Your First Wordpress Theme
 
Thinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSSThinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSS
 

Mehr von MayeCreate Design

How to Add a User to a Google Analytics Profile
How to Add a User to a Google Analytics ProfileHow to Add a User to a Google Analytics Profile
How to Add a User to a Google Analytics Profile
MayeCreate Design
 
How to Create a Google Account to Access your Analytics Reports
How to Create a Google Account to Access your Analytics ReportsHow to Create a Google Account to Access your Analytics Reports
How to Create a Google Account to Access your Analytics Reports
MayeCreate Design
 
Planning Your Online Marketing
Planning Your Online Marketing Planning Your Online Marketing
Planning Your Online Marketing
MayeCreate Design
 
Lunch & Learn 2014 - Writing for the Web
Lunch & Learn 2014 - Writing for the Web Lunch & Learn 2014 - Writing for the Web
Lunch & Learn 2014 - Writing for the Web
MayeCreate Design
 
Facebook Frenzy Workbook
Facebook Frenzy WorkbookFacebook Frenzy Workbook
Facebook Frenzy Workbook
MayeCreate Design
 

Mehr von MayeCreate Design (20)

Adding the Art of Sales to Web Development
Adding the Art of Sales to Web DevelopmentAdding the Art of Sales to Web Development
Adding the Art of Sales to Web Development
 
Building a Healthy Web Presence for Construction
Building a Healthy Web Presence for Construction Building a Healthy Web Presence for Construction
Building a Healthy Web Presence for Construction
 
ComoGives Marketing & Social Media Workshop Slides 2017
ComoGives Marketing & Social Media Workshop Slides 2017ComoGives Marketing & Social Media Workshop Slides 2017
ComoGives Marketing & Social Media Workshop Slides 2017
 
CoMoGives Marketing & Social Media Workshop Workbook 2017
CoMoGives Marketing & Social Media Workshop Workbook 2017CoMoGives Marketing & Social Media Workshop Workbook 2017
CoMoGives Marketing & Social Media Workshop Workbook 2017
 
2014 workshop flier
2014 workshop flier2014 workshop flier
2014 workshop flier
 
Intro to Inbound and Information Shift
Intro to Inbound and Information ShiftIntro to Inbound and Information Shift
Intro to Inbound and Information Shift
 
Under the hood of Google Analytics
Under the hood of Google AnalyticsUnder the hood of Google Analytics
Under the hood of Google Analytics
 
Spirit Techs Visual Identity Guide
Spirit Techs Visual Identity GuideSpirit Techs Visual Identity Guide
Spirit Techs Visual Identity Guide
 
Blogging for Leads Workbook
Blogging for Leads WorkbookBlogging for Leads Workbook
Blogging for Leads Workbook
 
Blogging for Leads
Blogging for LeadsBlogging for Leads
Blogging for Leads
 
How to Add Users to Google Analytics
How to Add Users to Google AnalyticsHow to Add Users to Google Analytics
How to Add Users to Google Analytics
 
How to Add a User to a Google Analytics Profile
How to Add a User to a Google Analytics ProfileHow to Add a User to a Google Analytics Profile
How to Add a User to a Google Analytics Profile
 
How to Create a Google Account to Access your Analytics Reports
How to Create a Google Account to Access your Analytics ReportsHow to Create a Google Account to Access your Analytics Reports
How to Create a Google Account to Access your Analytics Reports
 
Planning Your Online Marketing
Planning Your Online Marketing Planning Your Online Marketing
Planning Your Online Marketing
 
Lunch & Learn 2014 - Writing for the Web
Lunch & Learn 2014 - Writing for the Web Lunch & Learn 2014 - Writing for the Web
Lunch & Learn 2014 - Writing for the Web
 
Online Advertising
Online AdvertisingOnline Advertising
Online Advertising
 
Google Analytics Unveiled
Google Analytics UnveiledGoogle Analytics Unveiled
Google Analytics Unveiled
 
Business from Service
Business from ServiceBusiness from Service
Business from Service
 
Alternative advertising
Alternative advertisingAlternative advertising
Alternative advertising
 
Facebook Frenzy Workbook
Facebook Frenzy WorkbookFacebook Frenzy Workbook
Facebook Frenzy Workbook
 

KĂŒrzlich hochgeladen

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 

KĂŒrzlich hochgeladen (20)

🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 

Campers Packet

  • 1. HTML BOOTCAMP How a Website Works: 1|Page Need help? Contact us:www.MayeCreate.com | info@mayecreate.com | (573) 447-1836
  • 2. HTML BOOTCAMP HTML Tags In Theory: <tag>visible stuff</tag> a (anchor) used for links &anchors address Wraps an address blockquote Wraps quotes or long citations body The visible information br Soft line break div Division, like a box em Makes text italics h1, h2, h3, h4, h5&h6 Headings head Contains invisible info html Starts & ends web page img Image [src, height, width] li List item New in HTML 5*: link Links stylesheets inside head nav – for navigation ol Ordered list (1, 2, 3
) article – post or content p paragraph figure – one or more images span used for inline styling (mostly CSS) section – section of page, strong makes text bold or chapter of an article style starts CSS, inside head aside – un-necessary info like sidebars, title words in tab thingy, in head comments and footnotes ul un-ordered (bulleted) list 2|Page Need help? Contact us:www.MayeCreate.com | info@mayecreate.com | (573) 447-1836
  • 3. HTML BOOTCAMP ___________'s Letter Home A Letter Home From _________________, HTML Bootcamper 307 Locust Street Columbia, MO 65201 Dear ____________________, I'm having a great time at HTML Bootcamp today! My advisor is Marie Newell. She has been a part of Camp MayeCreate since June 2010. So far today I have done the following three things: gotten unpacked met the campers made a pot holder for you I'm really looking forward to teaching the following three things: ______________________________________________________________________________________ ______________________________________________________________________________________ ______________________________________________________________________________________ Here's a picture: Can't wait to show you all the stuff I'm doing! I'm thinking about signing up for the WordPress camp next month Sincerely, _________________________ _________________________@_________________________ 3|Page Need help? Contact us:www.MayeCreate.com | info@mayecreate.com | (573) 447-1836
  • 4. HTML BOOTCAMP <html> <head> <title>Marie's Letter Home</title> </head> <body> <h2>A Letter Home</h1> <h2>From Marie Newell, HTML Bootcamper</h1> <p>307 Locust Street<br />Columbia, MO 65201</p> <p><strong>Dear Clayton,<strong></p> <p>I'm having a great time at HTML Bootcamp today! I'm the advisor in charge. As you know, I've been a part of Camp MayeCreate since June 2010.</p> <p>So far today I have done the following three things: <ol><li>gotten unpacked</li> <Ii>met the campers</li> <li>made a pot holder for you</li> </ol> </p> <p>I'm really looking forward to teaching the following three things: <ul><li>how to make links to other pages</li> <li>how to insert images</li> <li>how to change colors</li> </ul> </p> <p>Here's a picture:<br /> <imgsrc="../images/lunchnlearn.png" /></p> <p>An apple a day keeps MayeCreate at the top of their game!</p> <p>Can't wait to show you all the stuff I'm doing! I'm thinking about signing up for <a href="http://www.mayecreate.com/2011/04/flash-back-to-wordpress/" target="_blank">the WordPress camp next month</a>.</p> <p>Sincerely,<br /> <em>Marie Newell</strong>br /> <a href="mailto:marie@mayecreate.com" marie@mayecreate.com</a></p> </body> </html> 4|Page Need help? Contact us:www.MayeCreate.com | info@mayecreate.com | (573) 447-1836
  • 5. HTML BOOTCAMP Links <a href=“destination/action”>What people click on</a> Composed of 3 parts: Anchor tag: <a> href attribute: href=“” (inside the starting anchor tag – defines destination/action) Content that people click on (must be in between anchor starting and closing tags) Types of Links:  To a website/webpage: <a href=“http://www.mayecreate.com/”>Our Website</a>  To an email address: <a href=“mailto:info@mayecreate.com”>Email Us!</a>  For a phone number: <a href=“tel:5734471836”>Call Us!</a> Open a link in a new window: add target=“_blank” inside the starting anchor tag Images  <imgsrc=“url for image to be used” height=“# in pixels” width=“# in pixels” />  Composed of 4 parts: 1. img tag 2. src attribute = url for the image to be used 3. height in pixels (optional) 4. width in pixels (optional) CSS - Inline Styles Inside the tag you are talking to, insert style=“styles go here” Find more information about styles in an external stylesheet online:http://www.w3schools.com/css/ 5|Page Need help? Contact us:www.MayeCreate.com | info@mayecreate.com | (573) 447-1836
  • 6. HTML BOOTCAMP Color codes consist of a hash symbol (#) and 6 characters. These characters can be digits (0-9) or letters (A-F) Common codes: #FFFFFF = white, #000000=black style=”color:#000000;” 6|Page Need help? Contact us:www.MayeCreate.com | info@mayecreate.com | (573) 447-1836
  • 7. HTML BOOTCAMP Universal Font Families:  Verdana, Geneva, sans-serif  Georgia, Times New Roman, Times, serif style=”font-family:Tahoma, sans-serif;”  Courier New, Courier, monospace  Arial, Helvetica, sans-serif  Tahoma, Geneva, sans-serif  Trebuchet MS, Arial, Helvetica, sans-serif  Palatino Linotype, Book Antiqua, Palatino, serif  Lucida Sans Unicode, Lucida Grand, sans-serif span Can be used anywhere within another tag to talk to specific text or elements div They can be nested The end tag closes the open div immediately before it Example: <div> <div class=“column1”>Contents in column 1</div> <div class=“column2”> Contents of column 2 </div> </div> Float You can float left, right, or none style=”float:left;” style=”float:right;” style=”float:none;” 7|Page Need help? Contact us:www.MayeCreate.com | info@mayecreate.com | (573) 447-1836
  • 8. HTML BOOTCAMP Additional Resources: HTML Dog - http://htmldog.com/ Don’t Fear the Internet - http://www.dontfeartheinternet.com/ HTML5: W3 Schools: http://www.w3schools.com/html5/default.asp WDL – Essentials & Good Practices: http://webdesignledger.com/tips/html5-essentials-and-good-practices Validator: http://html5.validator.nu/ Text Editors: Text Wrangler (MAC): http://www.barebones.com/products/TextWrangler/download.html Komodo Edit (PC): http://www.activestate.com/komodo-edit Adobe Dreamweaver: http://www.adobe.com/products/dreamweaver.html CSS - http://www.w3schools.com/css/ 8|Page Need help? Contact us:www.MayeCreate.com | info@mayecreate.com | (573) 447-1836