SlideShare a Scribd company logo
HTML Bootcamp

 MAYECREATE DESIGN
What We’ll be Going Over:

 How a website works
 What HTML is
 How to write HTML
 CSS, HTML’s stylish best friend
 HTML in WordPress
 What NOT to do with your new skills
 Beyond Bootcamp
How a Website Works: Part 1 - Front End
How a Website Works: Part 2 – Back End
What is HTML?


  HTML = Hyper Text Markup Language

  It is not a programming language, it is a
  markup language that consists of a set up
  markup tags.

  These markup tags are
  used to describe web pages.

W3schools.com/html/html_intro.asp
What are tags?


   Tags surround plain text and describe web pages.
   They are keywords or letters surrounded by angle
      brackets like:
                                    <html>
   They normally come in pairs:
                                    <body>   </body>
   The first tag is a start tag (aka an opening tag)
      & the second is an end tag (aka closing tag)


W3schools.com/html/html_intro.asp
HTML in Theory

 http://www.dontfeartheinternet.com/html/html
What You’ll Need:

To Write:
 Text Editing Program
    We use Dreamweaver
    TextWrangler for Mac or Komodo Edit for PC users (free)
    Notepad also works

                          To Publish:
                           Hosting Space
                           FTP Credentials
                           FTP Program
Do You Have What You Need?


   ARE THERE ANY QUESTIONS SO FAR?
DOCTYPE – before the
  html tag, refers to
  version of markup

  html – describes the
  where the webpage
  starts and ends

  head – for specific
  information that is not
  visible on the page

  body – holds the visible
  page content




                                           Web Page’s Basic Structure



http://w3schools.com/html/html_intro.asp
Common Tags

  a                                                  head
  address                                            html
  blockquote                                         img
  body                                               li
  br                                                 link
  div                                                ol
  em                                                 p
  h1                                                 span
  h2                                                 strong
  h3                                                 style
  h4                                                 strong
  h5                                                 title
  h6                                                 ul


http://www.dontfeartheinternet.com/html/html
Write a Letter Home

            Login:
             Host:
             User:
             Password:
            Download
              letterhome.html

            Open letterhome.html in a text
             editor (not Word!)

           OR

            Flip to the letter home in your
             workbook
Add Tags To Your Letter Home



 Start your document <html>


 Start and End your head and body:

 <head></head> and <body></body>

 End your document </html>
Edit Your Letter Home


             Fill in the blanks/replace the
              all CAPS text
             Insert the following tags where you
              think they go:
                 title
                 h1
                 h2
                 p
                 strong
                 ol
                 ul
                 li
                 a
                 em
<title></title>


 Used to describe the page’s content
 Displays in the browser window
 Used in SEO
<h1></h1>


 Most important title on the page
 Only use it once per page!
<h2></h2> through <h6></h6>


 Used for titles and sub-titles
 As many as you want on a page
<p></p>


 Used to create paragraphs
 As many as you want on a page
 Often has other tags within it
<strong></strong> & <em></em>


 Used to create bold or italicized text
 Can be used within other tags
<ul></ul> VS <ol></ol> & <li></li>


 Used to start and end lists
 ul stands for Un-Ordered List
 ol stands for Ordered List


 li tags are used for both types of lists
 li tags are on individual List Items
Links (Anchor Tags)


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

 Composed of 3 parts:
    Anchor tag: <a>
    href attribute: href=“” (inside the starting anchor tag)
    Content that people click on (must be in between anchor starting and
     closing tags)
Different 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 Link In a New Window

 This is controlled through the target attribute within your
  linked anchor tag:
     <a href=“http://www.facebook.com/mayecreate” target=“_blank”>
     Find Us on Facebook</a>

     _blank = open in a new window or tab
     _self = open in same frame as it was clicked
     _parent = open in the parent frameset
     _top = open in the full body of the window


Default (if left off) is to open in the same window/frame
Images

<img src=“http://mayecreate.com/images/filename.jpg”
height=“150” width=“100” />

 Composed of 3 parts:
    tag: <img />
        *Self-closing tag – don’t need </img>
    src attribute: src=“”
        inside the address of exactly where the image lives online
    dimensions: height=“” width=“”
        if left off, image will display at full size
        this is in pixels automatically, but percent can also be used
Images


 Image are great for adding interest
 If they are too big, they can increase loading time


 Keep loading time down by making images for web:
   72 ppi (pixels per inch) = web resolution

   Less than 700 pixels tall or 700 pixels wide
Image File Types



 JPG = white background, best for gradients


 GIF = for web, not really useable by other programs,
        can have transparent background, or not

 PNG = best for transparent backgrounds
Common Mistakes

 It is very common for the following mistakes to
 happen when using HTML:
    Mis-spellings (reference your tags list)
    Brackets are missing
    Tags don’t close
     </tag>            tag = whatever tag you are trying to close
    Tags open and close, but don’t match
Example of a Broken HTML

Before: the image is not   After: the image is free of
displaying above the       any other tags and displays
columns                    at the top of the page
How to View HTML in WordPress


 Login to your WordPress Dashboard
 Go to a Page or Post
 Click on the HTML tab
Broken? Go back a revision.


 At the bottom of your page, find the revision’s panel
 Click on the last version
  before it was broken
  and “restore”
 If not available, check the box
  in the screen options
Practice Proofing



 Mistakes happen… using what you’ve learned so
 far, can you find the 7 mistakes in the
 proof_letterhome.html file? (see workbook)
    Hints:
      If it opens, it must close
      It must be spelled correctly
      All tags need to be held in < >
HTML’s Stylish Best Friend: CSS



 All web browsers have default styles for the standard
  html tags.
 We use CSS to style elements so they look cleaner
  and fit the style of the website/client

 This is accomplished through CSS
What is CSS?


 CSS stands for: Cascading Style Sheets
 It is a language of styles that tell browsers how to
 display HTML elements
CSS – Stylesheet vs. Inline Styling

                      2 ways to style HTML:


 External stylesheet              Inline styling
    Linked inside head tag            Written within the tag it is
    Allows the same styles to          being applied to
     be applied to lots of             Only applied in that
     different elements                 instance
     throughout a site                 Little easier than drafting
    Files end in .css                  a whole stylesheet
Bones are Good – Let’s Add Some Fun!
Inline Styles


 Within the tag you are wanting to change, you must
 add the style attribute:

       <p style=“ ”>Text I want to change</p>

 This is where we will be telling it how to look
Changing the Color


 Changing Text Color:                  Changing Background
    color:#FFCC99;                      Color:
                                            background-color:#336633;




 #FFFFFF        #CCCCCC        #666666         #333333       #000000



 Find Hexidecimal Codes: http://www.mayecreate.com/2010/09/color-codes/
Typeface Changes

 This can be done by defining your font family using:


  font-family: Trebuchet MS, Arial, Helvetica, sans-serif;


 Its important to list several typefaces, so if the device being
  used to view your page doesn’t have it, it depreciates to the
  next best thing.

 There are several fonts that are considered universal
Universal Fonts / Standard Font-Families

 Verdana, Geneva, sans-serif
 Georgia, Times New Roman, Times, 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
Big Changes = <div></div>

 div = a “box” that can hold many different
  things, including other divs!
 You can wrap content in div tags:
         <div></div>

     Styles applied to a div apply to everything within the tags
      unless over-written by inline styles
Rules of Divs:

 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>
Small Changes = <span></span>

 Spans are inline elements that apply only to what
  they surround
 They don’t take up any more space than needed
 You can wrap content in span tags:
        <span></span>

     Styles applied to a span only apply to what they wrap
Floating on the River

 Floating objects can allow all kinds of fun things to
  happen on your website.
 It allows text to “wrap” around images


 2 options:
   float:left;

   float:right;
Rules of the River


 Float left unless absolutely necessary.


 If you float left, the text or other content that needs
 to move up to the right of the floating object can go
 before or after it.

 If floating right, the content that you want to appear
 to the left of the floating object must come after it.
S’more Things to Remember

 Text colors need to have good contrast so your
  viewers can read it.
 Using more than two fonts gets confusing really
  quickly!
 Make changes thoughtfully
Campfire Horror Stories:



   Don’t Just Do It…
Questions?
What We Covered:

 How a website works
 What HTML is
 How to write HTML
 CSS, HTML’s stylish best friend
 HTML in WordPress
 What NOT to do with your new skills
 Beyond Bootcamp
Learn More @ Columbia Area Career Center


 This Fall, I’m teaching several classes:
     Designing Effective Publications
     Digital Publishing Standards
     Adobe InDesign Modules 1-4


 If interested, sign up at career-center.org/adult

More Related Content

What's hot

HTML 5 Step By Step - Ebook
HTML 5 Step By Step - EbookHTML 5 Step By Step - Ebook
HTML 5 Step By Step - Ebook
Scottperrone
 
HTML & CSS Workshop Notes
HTML & CSS Workshop NotesHTML & CSS Workshop Notes
HTML & CSS Workshop Notes
Pamela Fox
 
Basics Of Html
Basics Of HtmlBasics Of Html
Basics Of Html
Sal Baldovinos
 
Html - Tutorial
Html - TutorialHtml - Tutorial
Html - Tutorial
adelaticleanu
 
HTML presentation for beginners
HTML presentation for beginnersHTML presentation for beginners
HTML presentation for beginners
jeroenvdmeer
 
Html Tutorial
Html Tutorial Html Tutorial
Html Tutorial
DenMas Hengky
 
HTML CSS & Javascript
HTML CSS & JavascriptHTML CSS & Javascript
HTML CSS & Javascript
David Lindkvist
 
Intro to HTML and CSS - Class 2 Slides
Intro to HTML and CSS - Class 2 SlidesIntro to HTML and CSS - Class 2 Slides
Intro to HTML and CSS - Class 2 Slides
Heather Rock
 
GDI Seattle Intro to HTML and CSS - Class 1
GDI Seattle Intro to HTML and CSS - Class 1GDI Seattle Intro to HTML and CSS - Class 1
GDI Seattle Intro to HTML and CSS - Class 1
Heather Rock
 
Html,javascript & css
Html,javascript & cssHtml,javascript & css
Html,javascript & css
Predhin Sapru
 
HTML, CSS And JAVASCRIPT!
HTML, CSS And JAVASCRIPT!HTML, CSS And JAVASCRIPT!
HTML, CSS And JAVASCRIPT!
Syahmi RH
 
HTML (Web) basics for a beginner
HTML (Web) basics for a beginnerHTML (Web) basics for a beginner
HTML (Web) basics for a beginner
Jayapal Reddy Nimmakayala
 
HTML/CSS Lecture 1
HTML/CSS Lecture 1HTML/CSS Lecture 1
HTML/CSS Lecture 1
Lee Lundrigan
 
HTML Introduction, HTML History, HTML Uses, HTML benifits
HTML Introduction, HTML History, HTML Uses, HTML benifitsHTML Introduction, HTML History, HTML Uses, HTML benifits
HTML Introduction, HTML History, HTML Uses, HTML benifits
Pro Guide
 
Hyper text markup Language
Hyper text markup LanguageHyper text markup Language
Hyper text markup Language
Naveeth Babu
 
Html css workshop, lesson 0, how browsers work
Html css workshop, lesson 0, how browsers workHtml css workshop, lesson 0, how browsers work
Html css workshop, lesson 0, how browsers work
Albino Tonnina
 
Html css java script basics All about you need
Html css java script basics All about you needHtml css java script basics All about you need
Html css java script basics All about you need
Dipen Parmar
 
Introduction to HTML
Introduction to HTML Introduction to HTML
Introduction to HTML
Professional Guru
 
HyperText Markup Language - HTML
HyperText Markup Language - HTMLHyperText Markup Language - HTML
HyperText Markup Language - HTML
Sun Technlogies
 
Introduction to WEB HTML, CSS
Introduction to WEB HTML, CSSIntroduction to WEB HTML, CSS
Introduction to WEB HTML, CSS
University of Technology
 

What's hot (20)

HTML 5 Step By Step - Ebook
HTML 5 Step By Step - EbookHTML 5 Step By Step - Ebook
HTML 5 Step By Step - Ebook
 
HTML & CSS Workshop Notes
HTML & CSS Workshop NotesHTML & CSS Workshop Notes
HTML & CSS Workshop Notes
 
Basics Of Html
Basics Of HtmlBasics Of Html
Basics Of Html
 
Html - Tutorial
Html - TutorialHtml - Tutorial
Html - Tutorial
 
HTML presentation for beginners
HTML presentation for beginnersHTML presentation for beginners
HTML presentation for beginners
 
Html Tutorial
Html Tutorial Html Tutorial
Html Tutorial
 
HTML CSS & Javascript
HTML CSS & JavascriptHTML CSS & Javascript
HTML CSS & Javascript
 
Intro to HTML and CSS - Class 2 Slides
Intro to HTML and CSS - Class 2 SlidesIntro to HTML and CSS - Class 2 Slides
Intro to HTML and CSS - Class 2 Slides
 
GDI Seattle Intro to HTML and CSS - Class 1
GDI Seattle Intro to HTML and CSS - Class 1GDI Seattle Intro to HTML and CSS - Class 1
GDI Seattle Intro to HTML and CSS - Class 1
 
Html,javascript & css
Html,javascript & cssHtml,javascript & css
Html,javascript & css
 
HTML, CSS And JAVASCRIPT!
HTML, CSS And JAVASCRIPT!HTML, CSS And JAVASCRIPT!
HTML, CSS And JAVASCRIPT!
 
HTML (Web) basics for a beginner
HTML (Web) basics for a beginnerHTML (Web) basics for a beginner
HTML (Web) basics for a beginner
 
HTML/CSS Lecture 1
HTML/CSS Lecture 1HTML/CSS Lecture 1
HTML/CSS Lecture 1
 
HTML Introduction, HTML History, HTML Uses, HTML benifits
HTML Introduction, HTML History, HTML Uses, HTML benifitsHTML Introduction, HTML History, HTML Uses, HTML benifits
HTML Introduction, HTML History, HTML Uses, HTML benifits
 
Hyper text markup Language
Hyper text markup LanguageHyper text markup Language
Hyper text markup Language
 
Html css workshop, lesson 0, how browsers work
Html css workshop, lesson 0, how browsers workHtml css workshop, lesson 0, how browsers work
Html css workshop, lesson 0, how browsers work
 
Html css java script basics All about you need
Html css java script basics All about you needHtml css java script basics All about you need
Html css java script basics All about you need
 
Introduction to HTML
Introduction to HTML Introduction to HTML
Introduction to HTML
 
HyperText Markup Language - HTML
HyperText Markup Language - HTMLHyperText Markup Language - HTML
HyperText Markup Language - HTML
 
Introduction to WEB HTML, CSS
Introduction to WEB HTML, CSSIntroduction to WEB HTML, CSS
Introduction to WEB HTML, CSS
 

Similar to HTML Bootcamp

HTML Bootcamp
HTML BootcampHTML Bootcamp
HTML Bootcamp
marie_newell
 
HTML
HTMLHTML
Html basics
Html basicsHtml basics
Html basics
Vjay Vijju
 
Learn HTML and CSS_ Learn to build a website with HTML and CSS
Learn HTML and CSS_ Learn to build a website with HTML and CSS Learn HTML and CSS_ Learn to build a website with HTML and CSS
Learn HTML and CSS_ Learn to build a website with HTML and CSS
simodafire
 
Merging Result-merged.pdf
Merging Result-merged.pdfMerging Result-merged.pdf
Merging Result-merged.pdf
simodafire
 
Basic Html Notes
Basic Html NotesBasic Html Notes
Basic Html Notes
NextGenr
 
Html Workshop
Html WorkshopHtml Workshop
Html Workshop
vardanyan99
 
Web development basics
Web development basicsWeb development basics
Web development basics
Kalluri Vinay Reddy
 
Web Design Basics
Web Design BasicsWeb Design Basics
Web Design Basics
Cindy Royal
 
Html beginners tutorial
Html beginners tutorialHtml beginners tutorial
Html beginners tutorial
nikhilsh66131
 
Html
HtmlHtml
WEB PROGRAMMING- Web page creation using HTML Tags
WEB PROGRAMMING-  Web page creation using HTML TagsWEB PROGRAMMING-  Web page creation using HTML Tags
WEB PROGRAMMING- Web page creation using HTML Tags
jananisairam
 
Html intro
Html introHtml intro
Html intro
Danielle Oser, APR
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
Ajay Khatri
 
Html basics 1
Html basics 1Html basics 1
Html basics 1
google
 
Html basics
Html basicsHtml basics
Html basics
Adityaroy110
 
Html basics
Html basicsHtml basics
Html basics
Vivek Khandelwal
 
HTML_Basics.pdf
HTML_Basics.pdfHTML_Basics.pdf
HTML_Basics.pdf
Bhavani Testone
 
Html basic file
Html basic fileHtml basic file
Html basic file
Md Mozaddidul Karim
 
Html BASICS
Html BASICSHtml BASICS

Similar to HTML Bootcamp (20)

HTML Bootcamp
HTML BootcampHTML Bootcamp
HTML Bootcamp
 
HTML
HTMLHTML
HTML
 
Html basics
Html basicsHtml basics
Html basics
 
Learn HTML and CSS_ Learn to build a website with HTML and CSS
Learn HTML and CSS_ Learn to build a website with HTML and CSS Learn HTML and CSS_ Learn to build a website with HTML and CSS
Learn HTML and CSS_ Learn to build a website with HTML and CSS
 
Merging Result-merged.pdf
Merging Result-merged.pdfMerging Result-merged.pdf
Merging Result-merged.pdf
 
Basic Html Notes
Basic Html NotesBasic Html Notes
Basic Html Notes
 
Html Workshop
Html WorkshopHtml Workshop
Html Workshop
 
Web development basics
Web development basicsWeb development basics
Web development basics
 
Web Design Basics
Web Design BasicsWeb Design Basics
Web Design Basics
 
Html beginners tutorial
Html beginners tutorialHtml beginners tutorial
Html beginners tutorial
 
Html
HtmlHtml
Html
 
WEB PROGRAMMING- Web page creation using HTML Tags
WEB PROGRAMMING-  Web page creation using HTML TagsWEB PROGRAMMING-  Web page creation using HTML Tags
WEB PROGRAMMING- Web page creation using HTML Tags
 
Html intro
Html introHtml intro
Html intro
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Html basics 1
Html basics 1Html basics 1
Html basics 1
 
Html basics
Html basicsHtml basics
Html basics
 
Html basics
Html basicsHtml basics
Html basics
 
HTML_Basics.pdf
HTML_Basics.pdfHTML_Basics.pdf
HTML_Basics.pdf
 
Html basic file
Html basic fileHtml basic file
Html basic file
 
Html BASICS
Html BASICSHtml BASICS
Html BASICS
 

More from 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 Development
MayeCreate 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 2017
MayeCreate 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 2017
MayeCreate Design
 
2014 workshop flier
2014 workshop flier2014 workshop flier
2014 workshop flier
MayeCreate Design
 
Intro to Inbound and Information Shift
Intro to Inbound and Information ShiftIntro to Inbound and Information Shift
Intro to Inbound and Information Shift
MayeCreate Design
 
Under the hood of Google Analytics
Under the hood of Google AnalyticsUnder the hood of Google Analytics
Under the hood of Google Analytics
MayeCreate Design
 
Spirit Techs Visual Identity Guide
Spirit Techs Visual Identity GuideSpirit Techs Visual Identity Guide
Spirit Techs Visual Identity Guide
MayeCreate Design
 
Blogging for Leads Workbook
Blogging for Leads WorkbookBlogging for Leads Workbook
Blogging for Leads Workbook
MayeCreate Design
 
Blogging for Leads
Blogging for LeadsBlogging for Leads
Blogging for Leads
MayeCreate 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 Analytics
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
 
Online Advertising
Online AdvertisingOnline Advertising
Online Advertising
MayeCreate Design
 
Google Analytics Unveiled
Google Analytics UnveiledGoogle Analytics Unveiled
Google Analytics Unveiled
MayeCreate Design
 
Business from Service
Business from ServiceBusiness from Service
Business from Service
MayeCreate Design
 
Alternative advertising
Alternative advertisingAlternative advertising
Alternative advertising
MayeCreate Design
 
Facebook Frenzy Workbook
Facebook Frenzy WorkbookFacebook Frenzy Workbook
Facebook Frenzy Workbook
MayeCreate Design
 

More from 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
 

Recently uploaded

Dandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity serverDandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity server
Antonios Katsarakis
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
DanBrown980551
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
Brandon Minnick, MBA
 
What is an RPA CoE? Session 1 – CoE Vision
What is an RPA CoE?  Session 1 – CoE VisionWhat is an RPA CoE?  Session 1 – CoE Vision
What is an RPA CoE? Session 1 – CoE Vision
DianaGray10
 
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
Edge AI and Vision Alliance
 
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Pitangent Analytics & Technology Solutions Pvt. Ltd
 
"Frontline Battles with DDoS: Best practices and Lessons Learned", Igor Ivaniuk
"Frontline Battles with DDoS: Best practices and Lessons Learned",  Igor Ivaniuk"Frontline Battles with DDoS: Best practices and Lessons Learned",  Igor Ivaniuk
"Frontline Battles with DDoS: Best practices and Lessons Learned", Igor Ivaniuk
Fwdays
 
Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid ResearchHarnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
Neo4j
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
Zilliz
 
Mutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented ChatbotsMutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented Chatbots
Pablo Gómez Abajo
 
The Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptxThe Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptx
operationspcvita
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
Hiroshi SHIBATA
 
June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
Ivanti
 
"Choosing proper type of scaling", Olena Syrota
"Choosing proper type of scaling", Olena Syrota"Choosing proper type of scaling", Olena Syrota
"Choosing proper type of scaling", Olena Syrota
Fwdays
 
AppSec PNW: Android and iOS Application Security with MobSF
AppSec PNW: Android and iOS Application Security with MobSFAppSec PNW: Android and iOS Application Security with MobSF
AppSec PNW: Android and iOS Application Security with MobSF
Ajin Abraham
 
Apps Break Data
Apps Break DataApps Break Data
Apps Break Data
Ivo Velitchkov
 
JavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green MasterplanJavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green Masterplan
Miro Wengner
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Tosin Akinosho
 
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
Jason Yip
 
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
saastr
 

Recently uploaded (20)

Dandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity serverDandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity server
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
 
What is an RPA CoE? Session 1 – CoE Vision
What is an RPA CoE?  Session 1 – CoE VisionWhat is an RPA CoE?  Session 1 – CoE Vision
What is an RPA CoE? Session 1 – CoE Vision
 
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
 
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
 
"Frontline Battles with DDoS: Best practices and Lessons Learned", Igor Ivaniuk
"Frontline Battles with DDoS: Best practices and Lessons Learned",  Igor Ivaniuk"Frontline Battles with DDoS: Best practices and Lessons Learned",  Igor Ivaniuk
"Frontline Battles with DDoS: Best practices and Lessons Learned", Igor Ivaniuk
 
Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid ResearchHarnessing the Power of NLP and Knowledge Graphs for Opioid Research
Harnessing the Power of NLP and Knowledge Graphs for Opioid Research
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
 
Mutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented ChatbotsMutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented Chatbots
 
The Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptxThe Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptx
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
 
June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
 
"Choosing proper type of scaling", Olena Syrota
"Choosing proper type of scaling", Olena Syrota"Choosing proper type of scaling", Olena Syrota
"Choosing proper type of scaling", Olena Syrota
 
AppSec PNW: Android and iOS Application Security with MobSF
AppSec PNW: Android and iOS Application Security with MobSFAppSec PNW: Android and iOS Application Security with MobSF
AppSec PNW: Android and iOS Application Security with MobSF
 
Apps Break Data
Apps Break DataApps Break Data
Apps Break Data
 
JavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green MasterplanJavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green Masterplan
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
 
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
 
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
 

HTML Bootcamp

  • 2. What We’ll be Going Over:  How a website works  What HTML is  How to write HTML  CSS, HTML’s stylish best friend  HTML in WordPress  What NOT to do with your new skills  Beyond Bootcamp
  • 3. How a Website Works: Part 1 - Front End
  • 4. How a Website Works: Part 2 – Back End
  • 5. What is HTML? HTML = Hyper Text Markup Language It is not a programming language, it is a markup language that consists of a set up markup tags. These markup tags are used to describe web pages. W3schools.com/html/html_intro.asp
  • 6. What are tags?  Tags surround plain text and describe web pages.  They are keywords or letters surrounded by angle brackets like: <html>  They normally come in pairs: <body> </body>  The first tag is a start tag (aka an opening tag) & the second is an end tag (aka closing tag) W3schools.com/html/html_intro.asp
  • 7. HTML in Theory  http://www.dontfeartheinternet.com/html/html
  • 8. What You’ll Need: To Write:  Text Editing Program  We use Dreamweaver  TextWrangler for Mac or Komodo Edit for PC users (free)  Notepad also works To Publish:  Hosting Space  FTP Credentials  FTP Program
  • 9. Do You Have What You Need? ARE THERE ANY QUESTIONS SO FAR?
  • 10. DOCTYPE – before the html tag, refers to version of markup html – describes the where the webpage starts and ends head – for specific information that is not visible on the page body – holds the visible page content Web Page’s Basic Structure http://w3schools.com/html/html_intro.asp
  • 11. Common Tags  a  head  address  html  blockquote  img  body  li  br  link  div  ol  em  p  h1  span  h2  strong  h3  style  h4  strong  h5  title  h6  ul http://www.dontfeartheinternet.com/html/html
  • 12. Write a Letter Home  Login: Host: User: Password:  Download  letterhome.html  Open letterhome.html in a text editor (not Word!) OR  Flip to the letter home in your workbook
  • 13. Add Tags To Your Letter Home  Start your document <html>  Start and End your head and body: <head></head> and <body></body>  End your document </html>
  • 14. Edit Your Letter Home  Fill in the blanks/replace the all CAPS text  Insert the following tags where you think they go:  title  h1  h2  p  strong  ol  ul  li  a  em
  • 15. <title></title>  Used to describe the page’s content  Displays in the browser window  Used in SEO
  • 16. <h1></h1>  Most important title on the page  Only use it once per page!
  • 17. <h2></h2> through <h6></h6>  Used for titles and sub-titles  As many as you want on a page
  • 18. <p></p>  Used to create paragraphs  As many as you want on a page  Often has other tags within it
  • 19. <strong></strong> & <em></em>  Used to create bold or italicized text  Can be used within other tags
  • 20. <ul></ul> VS <ol></ol> & <li></li>  Used to start and end lists  ul stands for Un-Ordered List  ol stands for Ordered List  li tags are used for both types of lists  li tags are on individual List Items
  • 21. Links (Anchor Tags) <a href=“destination/action”>What people click on</a>  Composed of 3 parts:  Anchor tag: <a>  href attribute: href=“” (inside the starting anchor tag)  Content that people click on (must be in between anchor starting and closing tags)
  • 22. Different 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>
  • 23. Open Link In a New Window  This is controlled through the target attribute within your linked anchor tag: <a href=“http://www.facebook.com/mayecreate” target=“_blank”> Find Us on Facebook</a> _blank = open in a new window or tab _self = open in same frame as it was clicked _parent = open in the parent frameset _top = open in the full body of the window Default (if left off) is to open in the same window/frame
  • 24. Images <img src=“http://mayecreate.com/images/filename.jpg” height=“150” width=“100” />  Composed of 3 parts:  tag: <img />  *Self-closing tag – don’t need </img>  src attribute: src=“”  inside the address of exactly where the image lives online  dimensions: height=“” width=“”  if left off, image will display at full size  this is in pixels automatically, but percent can also be used
  • 25. Images  Image are great for adding interest  If they are too big, they can increase loading time  Keep loading time down by making images for web:  72 ppi (pixels per inch) = web resolution  Less than 700 pixels tall or 700 pixels wide
  • 26. Image File Types  JPG = white background, best for gradients  GIF = for web, not really useable by other programs, can have transparent background, or not  PNG = best for transparent backgrounds
  • 27. Common Mistakes  It is very common for the following mistakes to happen when using HTML:  Mis-spellings (reference your tags list)  Brackets are missing  Tags don’t close </tag> tag = whatever tag you are trying to close  Tags open and close, but don’t match
  • 28. Example of a Broken HTML Before: the image is not After: the image is free of displaying above the any other tags and displays columns at the top of the page
  • 29. How to View HTML in WordPress  Login to your WordPress Dashboard  Go to a Page or Post  Click on the HTML tab
  • 30. Broken? Go back a revision.  At the bottom of your page, find the revision’s panel  Click on the last version before it was broken and “restore”  If not available, check the box in the screen options
  • 31. Practice Proofing  Mistakes happen… using what you’ve learned so far, can you find the 7 mistakes in the proof_letterhome.html file? (see workbook)  Hints:  If it opens, it must close  It must be spelled correctly  All tags need to be held in < >
  • 32. HTML’s Stylish Best Friend: CSS  All web browsers have default styles for the standard html tags.  We use CSS to style elements so they look cleaner and fit the style of the website/client  This is accomplished through CSS
  • 33. What is CSS?  CSS stands for: Cascading Style Sheets  It is a language of styles that tell browsers how to display HTML elements
  • 34. CSS – Stylesheet vs. Inline Styling 2 ways to style HTML:  External stylesheet  Inline styling  Linked inside head tag  Written within the tag it is  Allows the same styles to being applied to be applied to lots of  Only applied in that different elements instance throughout a site  Little easier than drafting  Files end in .css a whole stylesheet
  • 35. Bones are Good – Let’s Add Some Fun!
  • 36. Inline Styles  Within the tag you are wanting to change, you must add the style attribute: <p style=“ ”>Text I want to change</p>  This is where we will be telling it how to look
  • 37. Changing the Color  Changing Text Color:  Changing Background  color:#FFCC99; Color:  background-color:#336633; #FFFFFF #CCCCCC #666666 #333333 #000000 Find Hexidecimal Codes: http://www.mayecreate.com/2010/09/color-codes/
  • 38. Typeface Changes  This can be done by defining your font family using: font-family: Trebuchet MS, Arial, Helvetica, sans-serif;  Its important to list several typefaces, so if the device being used to view your page doesn’t have it, it depreciates to the next best thing.  There are several fonts that are considered universal
  • 39. Universal Fonts / Standard Font-Families  Verdana, Geneva, sans-serif  Georgia, Times New Roman, Times, 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
  • 40. Big Changes = <div></div>  div = a “box” that can hold many different things, including other divs!  You can wrap content in div tags: <div></div>  Styles applied to a div apply to everything within the tags unless over-written by inline styles
  • 41. Rules of Divs:  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>
  • 42. Small Changes = <span></span>  Spans are inline elements that apply only to what they surround  They don’t take up any more space than needed  You can wrap content in span tags: <span></span>  Styles applied to a span only apply to what they wrap
  • 43. Floating on the River  Floating objects can allow all kinds of fun things to happen on your website.  It allows text to “wrap” around images  2 options:  float:left;  float:right;
  • 44. Rules of the River  Float left unless absolutely necessary.  If you float left, the text or other content that needs to move up to the right of the floating object can go before or after it.  If floating right, the content that you want to appear to the left of the floating object must come after it.
  • 45. S’more Things to Remember  Text colors need to have good contrast so your viewers can read it.  Using more than two fonts gets confusing really quickly!  Make changes thoughtfully
  • 46. Campfire Horror Stories: Don’t Just Do It…
  • 48. What We Covered:  How a website works  What HTML is  How to write HTML  CSS, HTML’s stylish best friend  HTML in WordPress  What NOT to do with your new skills  Beyond Bootcamp
  • 49. Learn More @ Columbia Area Career Center  This Fall, I’m teaching several classes:  Designing Effective Publications  Digital Publishing Standards  Adobe InDesign Modules 1-4  If interested, sign up at career-center.org/adult