SlideShare una empresa de Scribd logo
1 de 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

Más contenido relacionado

La actualidad más candente

Web design-workflow
Web design-workflowWeb design-workflow
Web design-workflowPeter Kaizer
 
Seo Web Developer Cheat Sheet
Seo Web Developer Cheat SheetSeo Web Developer Cheat Sheet
Seo Web Developer Cheat Sheetjrutter12
 
Web Service Creation in HTML5
Web Service Creation in HTML5Web Service Creation in HTML5
Web Service Creation in HTML5Tero A. Laiho
 
How to create a basic template
How to create a basic templateHow to create a basic template
How to create a basic templatevathur
 
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)Four Kitchens
 
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 jQueryTodd Zaki Warfel
 
Advanced CSS Troubleshooting
Advanced CSS TroubleshootingAdvanced CSS Troubleshooting
Advanced CSS TroubleshootingDenise Jacobs
 
HTML and CSS Coding Standards
HTML and CSS Coding StandardsHTML and CSS Coding Standards
HTML and CSS Coding StandardsSaajan Maharjan
 
Evaluation online website(Hanaa)
Evaluation online website(Hanaa)Evaluation online website(Hanaa)
Evaluation online website(Hanaa)H S
 
SEO for Developers
SEO for DevelopersSEO for Developers
SEO for DevelopersExove
 
ePUB 3 and Publishing e-books
ePUB 3 and Publishing e-booksePUB 3 and Publishing e-books
ePUB 3 and Publishing e-booksKerem Karatal
 
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 - a11yBosDennis Lembree
 
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 1Heather Rock
 

La actualidad más candente (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
 

Similar a Campers Packet

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 pageGrayzon Gonzales, LPT
 
Intro To Twitter Bootstrap
Intro To Twitter BootstrapIntro To Twitter Bootstrap
Intro To Twitter BootstrapAhmed Haque
 
CSS Layout Tutorial
CSS Layout TutorialCSS Layout Tutorial
CSS Layout Tutorialhstryk
 
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
 
Theme Kickstart
Theme KickstartTheme Kickstart
Theme KickstartPeter
 
The Future is Modular, Jonathan Snook
The Future is Modular, Jonathan SnookThe Future is Modular, Jonathan Snook
The Future is Modular, Jonathan SnookFuture Insights
 
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)Webtech Learning
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.docbutest
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.docbutest
 
Website development using dreamweaver
Website development using dreamweaverWebsite development using dreamweaver
Website development using dreamweaverTekblink Jeeten
 
Web Design Bootcamp - Day1
Web Design Bootcamp - Day1Web Design Bootcamp - Day1
Web Design Bootcamp - Day1Aslam Najeebdeen
 
ViA Bootstrap 4
ViA Bootstrap 4ViA Bootstrap 4
ViA Bootstrap 4imdurgesh
 
Your First Wordpress Theme
Your First Wordpress ThemeYour First Wordpress Theme
Your First Wordpress Themesayed fathey
 
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/CSSTJ Stalcup
 

Similar a 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
 

Más de MayeCreate Design

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 DevelopmentMayeCreate Design
 
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 MayeCreate Design
 
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 2017MayeCreate Design
 
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 2017MayeCreate Design
 
Intro to Inbound and Information Shift
Intro to Inbound and Information ShiftIntro to Inbound and Information Shift
Intro to Inbound and Information ShiftMayeCreate Design
 
Under the hood of Google Analytics
Under the hood of Google AnalyticsUnder the hood of Google Analytics
Under the hood of Google AnalyticsMayeCreate Design
 
Spirit Techs Visual Identity Guide
Spirit Techs Visual Identity GuideSpirit Techs Visual Identity Guide
Spirit Techs Visual Identity GuideMayeCreate Design
 
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 AnalyticsMayeCreate 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 ProfileMayeCreate 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 ReportsMayeCreate 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
 

Más de 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
 

Último

ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfOverkill Security
 
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 educationjfdjdjcjdnsjd
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfOverkill Security
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 

Último (20)

ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 
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
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 

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