Tags

    HTML module

    Comments

    /groups/advancedcomputerscience/search/index.rss?tag=hotlist/groups/advancedcomputerscience/search/?tag=hotWhat’s HotHotListHot!?tag=hot1/groups/advancedcomputerscience/sidebar/HotListairport extreme setup pagesadminadmin2014-09-22 19:45:24+00:002014-09-22 19:45:24updated4Added tag - hotadminadmin2014-09-22 19:45:23+00:002014-09-22 19:45:23addTag3adminadmin2014-09-22 19:45:09+00:002014-09-22 19:45:09updated2First createdadminadmin2014-09-22 19:38:45+00:002014-09-22 19:38:45created1wiki2014-09-22T19:45:24+00:00groups/advancedcomputerscience/wiki/0554cFalseairport setup pages/groups/advancedcomputerscience/wiki/0554c/airport_setup_pages.htmladmin4 updatesairport setup pages Basic Airport extreme setup pages, using utility 6.3.2 Basic config screen, notice MAC addresses of clients: [Screen Shot 2014-09-...Falseadmin2014-09-22T19:45:24+00:00hot/groups/advancedcomputerscience/search/index.rss?sort=modifiedDate&kind=all&sortDirection=reverse&excludePages=wiki/welcomelist/groups/advancedcomputerscience/search/?sort=modifiedDate&kind=all&sortDirection=reverse&excludePages=wiki/welcomeRecent ChangesRecentChangesListUpdates?sort=modifiedDate&kind=all&sortDirection=reverse&excludePages=wiki/welcome0/groups/advancedcomputerscience/sidebar/RecentChangesListmodifiedDateallRecent ChangesRecentChangesListUpdateswiki/welcomeNo recent changes.reverse5search

    HTML primer pages

    HTML skills list (skeelsz list):
    1. Create basic web page
      1. include html, body, head, title, p tags
      2. upload to server in www directory
      3. index.html vs. index2.html
    2. Text attributes
      1. bold, italic, underline, strikeout, emphasis, strong, small
      2. h1, h2, h3, paragraph, li
    3. Create links
      1. external link in the form <a href = "http://www.physics.hpa.edu">physics server</a>
      2. internal link in the form <a href = "/images/kittycats/">hideous creatures</a>
      3. internal directory links: <a href = "../images/kittycats/">hideous creatures</a>
    4. Image handling
      1. basic image format: <img src="falling_kitties" width="300" height="175" alt="poor kitty" />
      2. external images: <img src="http://www.omgmycat.com/images/falling_kitties" width="300" height="175" alt="poor kitty" />
    5. Advanced URL links
      1. http://www.tofukitty.com/
      2. ftp://www.tofukitty.com
      3. afp://physics.hpa.edu/
      4. mailto:kittydoctor@sadcats.com
    6. HTML5 goodies: basics and layout
      1. <!DOCTYPE html> declaration
      2. <html lang="language-code"> or <html lang=en-US">
      3. <meta charset="utf-8" />
      4. h1-h6
      5. <header>
      6. <header role="banner">
      7. <nav> <ul> and <ol>
      8. <main role="main">
      9. <article>
      10. <section>
      11. <aside role="complementary">
      12. <footer>
      13. <div>
      14. <div class="sidebar">
      15. comments: <!--blah--->
    7. HTML5: text operations
      1. <small>
      2. <strong> instead of <b>
      3. <em> instead of <i>
      4. <figure> and <figcaption>
      5. <cite>
      6. <blockquote>
      7. <time>
      8. <sub> and <sup>
      9. <code>
      10. <mark>
      11. line break <br>
    8. CSS basics