├── .gitignore ├── chapter10 ├── index.html └── website_files │ ├── 01_HTML5 │ ├── 01addingHTML5shim │ │ ├── about.html │ │ ├── backgrounds │ │ │ ├── header-bg.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── tagline-fade.jpg │ │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ ├── index.html │ │ └── style1.css │ ├── 02replacingHeaderAndNav │ │ ├── about.html │ │ ├── backgrounds │ │ │ ├── header-bg.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── tagline-fade.jpg │ │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ ├── index.html │ │ └── style1.css │ ├── 03headerAndNavStyled │ │ ├── about.html │ │ ├── backgrounds │ │ │ ├── header-bg.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── tagline-fade.jpg │ │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ ├── index.html │ │ └── style1.css │ ├── 04headerAndNavStyledIE │ │ ├── about.html │ │ ├── backgrounds │ │ │ ├── header-bg.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── tagline-fade.jpg │ │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ ├── index.html │ │ └── style1.css │ ├── 05leftNavTopMarginFixed │ │ ├── about.html │ │ ├── backgrounds │ │ │ ├── header-bg.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── tagline-fade.jpg │ │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ ├── index.html │ │ └── style1.css │ ├── 06asideAdded │ │ ├── about.html │ │ ├── backgrounds │ │ │ ├── header-bg.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── tagline-fade.jpg │ │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ ├── index.html │ │ └── style1.css │ └── 07figAndFigCaption │ │ ├── about.html │ │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ │ ├── index.html │ │ └── style1.css │ ├── 02_CSS3 │ ├── 01roundedCorners │ │ ├── about.html │ │ ├── backgrounds │ │ │ ├── header-bg.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── tagline-fade.jpg │ │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ ├── index.html │ │ └── style1.css │ ├── 02roundedCornersDifferentCorners │ │ ├── about.html │ │ ├── backgrounds │ │ │ ├── header-bg.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── tagline-fade.jpg │ │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ ├── index.html │ │ └── style1.css │ ├── 03boxShadow │ │ ├── about.html │ │ ├── backgrounds │ │ │ ├── header-bg.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── tagline-fade.jpg │ │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ ├── index.html │ │ └── style1.css │ ├── 04boxShadowMultipleShadows │ │ ├── about.html │ │ ├── backgrounds │ │ │ ├── header-bg.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── tagline-fade.jpg │ │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ ├── index.html │ │ └── style1.css │ ├── 05textShadow │ │ ├── about.html │ │ ├── backgrounds │ │ │ ├── header-bg.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── tagline-fade.jpg │ │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ ├── index.html │ │ └── style1.css │ ├── 05textShadowSubtle │ │ ├── about.html │ │ ├── backgrounds │ │ │ ├── header-bg.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── tagline-fade.jpg │ │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ ├── index.html │ │ └── style1.css │ ├── 06googleWebFonts │ │ ├── about.html │ │ ├── backgrounds │ │ │ ├── header-bg.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── tagline-fade.jpg │ │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ ├── index.html │ │ └── style1.css │ ├── 07googleWebFontsLuckiestGuy │ │ ├── about.html │ │ ├── backgrounds │ │ │ ├── header-bg.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── tagline-fade.jpg │ │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ ├── index.html │ │ └── style1.css │ └── 08googleWebFontsTooMany │ │ ├── about.html │ │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ │ ├── index.html │ │ └── style1.css │ └── final_version_for_chapter │ ├── about.html │ ├── backgrounds │ ├── header-bg.jpg │ ├── nav-bg.jpg │ ├── tagline-fade.jpg │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ ├── anemone.jpg │ ├── fish-face.jpg │ ├── floating.jpg │ ├── jellyfish.jpg │ ├── reef1.jpg │ ├── reef2.jpg │ ├── turtle-bite.jpg │ ├── turtle-face.jpg │ └── what-a-star.jpg │ ├── index.html │ └── style1.css ├── chapter11 ├── examples │ ├── 01_hideHeadingStandardJS.html │ ├── 02_hideHeadingjQuery.html │ ├── 03_jQueryEmbeddedScript.html │ ├── 04_jQueryCommonScript.html │ └── js │ │ ├── common.js │ │ └── jquery-1.5.2.min.js ├── index.html └── website_files │ ├── 01_AddDefaultFormValues │ ├── about.html │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── index.html │ ├── js │ │ ├── common.js │ │ └── jquery-1.5.2.min.js │ └── style1.css │ ├── 02_GalleryCaptionHoverEffect │ ├── about.html │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── index.html │ ├── js │ │ ├── common.js │ │ └── jquery-1.5.2.min.js │ └── style1.css │ └── final_version_for_chapter │ ├── about.html │ ├── backgrounds │ ├── header-bg.jpg │ ├── nav-bg.jpg │ ├── tagline-fade.jpg │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ ├── anemone.jpg │ ├── fish-face.jpg │ ├── floating.jpg │ ├── jellyfish.jpg │ ├── reef1.jpg │ ├── reef2.jpg │ ├── turtle-bite.jpg │ ├── turtle-face.jpg │ └── what-a-star.jpg │ ├── index.html │ ├── js │ ├── common.js │ └── jquery-1.5.2.min.js │ └── style1.css ├── chapter12 ├── .#index.html.1.5 ├── index.html └── website_files │ ├── 01_FirebugExamples │ ├── about.html │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── index.html │ ├── js │ │ ├── common.js │ │ └── jquery-1.5.2.min.js │ └── style1.css │ ├── 02_WebDevToolbarExamples │ ├── 01_WrongAltAttributes │ │ ├── about.html │ │ ├── backgrounds │ │ │ ├── header-bg.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── tagline-fade.jpg │ │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ ├── index.html │ │ ├── js │ │ │ ├── common.js │ │ │ └── jquery-1.5.2.min.js │ │ └── style1.css │ └── 02_NoBackgroundColorSpecified │ │ ├── about.html │ │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ │ ├── index.html │ │ ├── js │ │ ├── common.js │ │ └── jquery-1.5.2.min.js │ │ └── style1.css │ ├── 03_XRayExamples │ ├── 01_BlockquoteWidthWrong │ │ ├── about.html │ │ ├── backgrounds │ │ │ ├── header-bg.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── tagline-fade.jpg │ │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ ├── index.html │ │ ├── js │ │ │ ├── common.js │ │ │ └── jquery-1.5.2.min.js │ │ └── style1.css │ └── 02_BlockquoteWidthFixed │ │ ├── about.html │ │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ │ ├── contact.html │ │ ├── divers-circle.jpg │ │ ├── events.html │ │ ├── gallery.html │ │ ├── gallery │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ │ ├── index.html │ │ ├── js │ │ ├── common.js │ │ └── jquery-1.5.2.min.js │ │ └── style1.css │ └── final_version_for_chapter │ ├── about.html │ ├── backgrounds │ ├── header-bg.jpg │ ├── nav-bg.jpg │ ├── tagline-fade.jpg │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ ├── anemone.jpg │ ├── fish-face.jpg │ ├── floating.jpg │ ├── jellyfish.jpg │ ├── reef1.jpg │ ├── reef2.jpg │ ├── turtle-bite.jpg │ ├── turtle-face.jpg │ └── what-a-star.jpg │ ├── index.html │ ├── js │ ├── common.js │ └── jquery-1.5.2.min.js │ └── style1.css ├── chapter13 ├── .#index.html.1.5 ├── index.html └── website_files │ ├── 01_statcounter_code │ ├── about.html │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── index.html │ ├── js │ │ ├── common.js │ │ └── jquery-1.5.2.min.js │ └── style1.css │ ├── 02_google_search │ ├── about.html │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── index.html │ ├── js │ │ ├── common.js │ │ └── jquery-1.5.2.min.js │ └── style1.css │ ├── 03_rollyo_search │ ├── about.html │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── index.html │ ├── js │ │ ├── common.js │ │ └── jquery-1.5.2.min.js │ └── style1.css │ ├── 04_rollyo_search_jquery │ ├── about.html │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── index.html │ ├── js │ │ ├── common.js │ │ └── jquery-1.5.2.min.js │ └── style1.css │ └── final_version_for_chapter │ ├── about.html │ ├── backgrounds │ ├── header-bg.jpg │ ├── nav-bg.jpg │ ├── tagline-fade.jpg │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ ├── anemone.jpg │ ├── fish-face.jpg │ ├── floating.jpg │ ├── jellyfish.jpg │ ├── reef1.jpg │ ├── reef2.jpg │ ├── turtle-bite.jpg │ ├── turtle-face.jpg │ └── what-a-star.jpg │ ├── index.html │ ├── js │ ├── common.js │ └── jquery-1.5.2.min.js │ └── style1.css ├── chapter2 ├── examples │ ├── 01_basic_web_page │ │ └── basic.html │ ├── 02_lists │ │ └── lists.html │ ├── 03_comments │ │ └── comments.html │ ├── 04_commenting_out_markup │ │ └── commentout.html │ ├── 05_symbols │ │ └── entity.html │ ├── 06_divs │ │ └── divs.html │ ├── 07_cite │ │ └── cite.html │ ├── 08_strong_em │ │ └── strong_em.html │ └── 09_break │ │ └── break.html ├── index.html └── website_files │ ├── 01_skeleton │ └── index.html │ ├── 02_setting_a_title │ └── index.html │ ├── 03_welcoming_new_visitors │ └── index.html │ ├── 04_whats_it_all_about │ └── index.html │ ├── 05_clickable_email_and_image │ ├── divers-circle.jpg │ └── index.html │ ├── 06_adding_structure_with_divs │ ├── divers-circle.jpg │ └── index.html │ ├── 07_linking_between_pages │ ├── divers-circle.jpg │ └── index.html │ ├── 08_blockquote │ └── about.html │ └── final_version_for_chapter │ ├── about.html │ ├── contact.html │ ├── divers-circle.jpg │ └── index.html ├── chapter3 ├── index.html └── website_files │ ├── 01_blue_bold_paragraph │ └── about.html │ ├── 02_blue_bold_span │ └── about.html │ ├── 03_embedded_style_sheet │ └── about.html │ ├── 04_style_sheet_link │ ├── index.html │ └── style1.css │ ├── 05_body_verdana │ ├── about.html │ └── style1.css │ ├── 06_h1_font │ ├── about.html │ └── style1.css │ ├── 07_blue_background │ ├── about.html │ └── style1.css │ ├── 08_emphasis_italics │ ├── about.html │ └── style1.css │ ├── 09_emphasis_capitals │ ├── about.html │ └── style1.css │ ├── 10_emphasis_capitals_italics │ ├── about.html │ └── style1.css │ ├── 11_styled_tagline │ ├── about.html │ └── style1.css │ ├── 12_grouped_headings │ ├── about.html │ └── style1.css │ ├── 13_black_links │ ├── about.html │ └── style1.css │ ├── 14_styled_links │ ├── about.html │ └── style1.css │ ├── 15_fun_blockquote │ ├── about.html │ └── style1.css │ ├── 15_fun_span │ ├── about.html │ └── style1.css │ ├── 16_fun_blockquote │ ├── about.html │ └── style1.css │ ├── 16_fun_span │ ├── about.html │ └── style1.css │ └── final_version_for_chapter │ ├── about.html │ ├── contact.html │ ├── divers-circle.jpg │ ├── index.html │ └── style1.css ├── chapter4 ├── examples │ ├── 01_setting_a_width │ │ └── width.html │ ├── 02_setting_a_height │ │ └── height.html │ ├── 03_borders │ │ ├── 01_simple_black_border.html │ │ ├── 02_inset_border.html │ │ ├── 03_colored_ridge_border.html │ │ ├── 04_bold_dotted_border.html │ │ ├── 05_bold_dashed_border.html │ │ ├── 06_1_pixel_gray_border.html │ │ ├── 07_2_pixel_silver_border.html │ │ ├── 08_dotted_red_border.html │ │ ├── 09_dashed_gray_border.html │ │ ├── 10_double_border.html │ │ ├── 11_multi_border.html │ │ └── 12_shorthand_border_styles.html │ ├── 04_padding │ │ └── padding.html │ ├── 05_margins │ │ └── margins.html │ ├── 06_absolute_positioning │ │ ├── absolute_positioning_1.html │ │ └── absolute_positioning_2.html │ ├── 07_relative_positioning │ │ └── relative_positioning.html │ └── 08_floated_positioning │ │ ├── floated_positioning_1.html │ │ └── floated_positioning_2.html ├── index.html └── website_files │ ├── 01_block_level_elements │ ├── about.html │ └── style1.css │ ├── 02_page_border │ ├── about.html │ └── style1.css │ ├── 03_navigation_border │ ├── about.html │ └── style1.css │ ├── 04_navigation_bgcolor │ ├── about.html │ └── style1.css │ ├── 05_tagline_border │ ├── about.html │ └── style1.css │ ├── 06_restyled_h2 │ ├── about.html │ └── style1.css │ ├── 07_heading_padding │ ├── about.html │ └── style1.css │ ├── 08_page_structure │ ├── about.html │ └── style1.css │ ├── 09_body_no_padding_or_margin │ ├── about.html │ └── style1.css │ ├── 10_headings_no_margin │ ├── about.html │ └── style1.css │ ├── 11_absolute_mess │ ├── about.html │ └── style1.css │ ├── 12_header_visible │ ├── about.html │ └── style1.css │ ├── 13_body_content_positioned │ ├── about.html │ └── style1.css │ ├── 14_almost_done │ ├── about.html │ └── style1.css │ ├── 15_final_layout │ ├── about.html │ └── style1.css │ ├── 16_em_based_positioning │ ├── about.html │ └── style1.css │ ├── 17_floated_image │ ├── divers-circle.jpg │ ├── index.html │ └── style1.css │ ├── 18_no_nav_list_bullet │ ├── about.html │ └── style1.css │ └── final_version_for_chapter │ ├── about.html │ ├── contact.html │ ├── divers-circle.jpg │ ├── index.html │ └── style1.css ├── chapter5 ├── examples │ ├── 01_no_image │ │ ├── index.html │ │ └── style1.css │ ├── 02_bad_alt_text │ │ ├── index.html │ │ └── style1.css │ ├── 03_background_images │ │ ├── bg_images.html │ │ └── images │ │ │ ├── clouds.jpg │ │ │ ├── company-logo-transparent.gif │ │ │ ├── hori-fade.gif │ │ │ ├── palm-trees.jpg │ │ │ ├── sunset.jpg │ │ │ └── vert-fade.gif │ └── 04_transparency │ │ ├── images │ │ ├── company-logo--trans.png │ │ ├── company-logo-no-trans.jpg │ │ ├── company-logo-transparent.gif │ │ └── fade.jpg │ │ └── transparency.html ├── index.html └── website_files │ ├── 01_link_in_nav │ ├── about.html │ ├── contact.html │ ├── divers-circle.jpg │ ├── gallery.html │ ├── gallery │ │ └── turtle-bite.jpg │ ├── index.html │ └── style1.css │ ├── 02_gallery_one_image │ ├── gallery.html │ ├── gallery │ │ └── turtle-bite.jpg │ └── style1.css │ ├── 03_polaroid_effect │ ├── gallery.html │ ├── gallery │ │ └── turtle-bite.jpg │ └── style1.css │ ├── 04_unstyled_caption │ ├── gallery.html │ ├── gallery │ │ └── turtle-bite.jpg │ └── style1.css │ ├── 05_styled_caption │ ├── gallery.html │ ├── gallery │ │ └── turtle-bite.jpg │ └── style1.css │ ├── 06_alternate_styled_caption │ ├── gallery.html │ ├── gallery │ │ └── turtle-bite.jpg │ └── style1.css │ ├── 07_custom_divider │ ├── gallery.html │ ├── gallery │ │ └── turtle-bite.jpg │ └── style1.css │ ├── 08_complete_gallery │ ├── gallery.html │ ├── gallery │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ └── style1.css │ ├── 09_navigation_background │ ├── about.html │ ├── backgrounds │ │ └── nav-bg.jpg │ └── style1.css │ ├── 10_tagline_background │ ├── about.html │ ├── backgrounds │ │ ├── nav-bg.jpg │ │ └── tagline-fade.jpg │ └── style1.css │ ├── 11_heading_background │ ├── about.html │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ └── tagline-fade.jpg │ └── style1.css │ └── final_version_for_chapter │ ├── about.html │ ├── backgrounds │ ├── header-bg.jpg │ ├── nav-bg.jpg │ └── tagline-fade.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── gallery.html │ ├── gallery │ ├── anemone.jpg │ ├── fish-face.jpg │ ├── floating.jpg │ ├── jellyfish.jpg │ ├── reef1.jpg │ ├── reef2.jpg │ ├── turtle-bite.jpg │ ├── turtle-face.jpg │ └── what-a-star.jpg │ ├── index.html │ └── style1.css ├── chapter6 ├── examples │ ├── 01_example_table │ │ └── index.html │ ├── 02_one_pixel_borders │ │ └── index.html │ ├── 03_styled_table │ │ └── index.html │ ├── 04_caption_and_summary │ │ └── index.html │ ├── 05_tv_listings │ │ └── index.html │ ├── 06_colspan_rowspan │ │ └── index.html │ └── 07_train_timetable │ │ └── index.html ├── index.html └── website_files │ ├── 01_events_first_draft │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ └── tagline-fade.jpg │ ├── events.html │ └── style1.css │ ├── 02_events_table │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ └── tagline-fade.jpg │ ├── events.html │ └── style1.css │ ├── 03_events_table_borders │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ └── tagline-fade.jpg │ ├── events.html │ └── style1.css │ ├── 04_styled_table_header │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ └── tagline-fade.jpg │ ├── events.html │ └── style1.css │ ├── 05_stylish_table_cells │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── events.html │ └── style1.css │ └── final_version_for_chapter │ ├── about.html │ ├── backgrounds │ ├── header-bg.jpg │ ├── nav-bg.jpg │ ├── tagline-fade.jpg │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ ├── anemone.jpg │ ├── fish-face.jpg │ ├── floating.jpg │ ├── jellyfish.jpg │ ├── reef1.jpg │ ├── reef2.jpg │ ├── turtle-bite.jpg │ ├── turtle-face.jpg │ └── what-a-star.jpg │ ├── index.html │ └── style1.css ├── chapter7 ├── examples │ ├── 01_simple_form │ │ └── simpleform.html │ ├── 02_fieldset_legend │ │ └── fieldset.html │ ├── 03_nested_fieldsets │ │ └── nested.html │ ├── 04_simple_text_field │ │ └── textfield.html │ ├── 05_setting_text_value │ │ └── textvalue.html │ ├── 06_password_field │ │ └── password.html │ ├── 07_hidden_inputs │ │ └── hidden.html │ ├── 08_checkboxes │ │ └── checkboxes.html │ ├── 09_preselected_checkboxes │ │ └── checkboxes.html │ ├── 10_radio_buttons │ │ └── radiobuttons.html │ ├── 11_preselected_radio_buttons │ │ └── radiobuttons.html │ ├── 12_drop_down_list │ │ └── dropdown.html │ ├── 13_preselected_drop_down │ │ └── dropdown.html │ ├── 14_textarea │ │ └── textarea.html │ └── 15_example_form │ │ └── exampleform.html ├── index.html └── website_files │ ├── 01_new_paragraph │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ └── style1.css │ ├── 02_form_and_fieldset │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ └── style1.css │ ├── 03_temporary_form_content │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ └── style1.css │ ├── 04_styled_fieldset │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ └── style1.css │ ├── 05_contact_name │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ └── style1.css │ ├── 06_other_controls │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ └── style1.css │ ├── 07_aligned_inputs │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ └── style1.css │ ├── 08_region_dropdown │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ └── style1.css │ ├── 09_text_area │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ └── style1.css │ ├── 10_radios_and_checkboxes │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ └── style1.css │ ├── 11_submit_button │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ └── style1.css │ └── final_version_for_chapter │ ├── about.html │ ├── backgrounds │ ├── header-bg.jpg │ ├── nav-bg.jpg │ ├── tagline-fade.jpg │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ ├── anemone.jpg │ ├── fish-face.jpg │ ├── floating.jpg │ ├── jellyfish.jpg │ ├── reef1.jpg │ ├── reef2.jpg │ ├── turtle-bite.jpg │ ├── turtle-face.jpg │ └── what-a-star.jpg │ ├── index.html │ └── style1.css ├── chapter8 ├── examples │ ├── FacebookLikeBox.html │ └── twitterProfile.html ├── index.html └── website_files │ ├── 01_FacebookLikeBox │ ├── about.html │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── index.html │ └── style1.css │ ├── 02_FacebookLikeBox_Resized │ ├── about.html │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── index.html │ └── style1.css │ ├── 03_FacebookLikeBox_ResizedHeight │ ├── about.html │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── index.html │ └── style1.css │ ├── 04_TwitterProfile │ ├── about.html │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── index.html │ └── style1.css │ ├── 05_TwitterProfileAndFollow │ ├── about.html │ ├── backgrounds │ │ ├── header-bg.jpg │ │ ├── nav-bg.jpg │ │ ├── tagline-fade.jpg │ │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── index.html │ └── style1.css │ └── 06_SimplifiedFaceBookAndTwitterLayout │ ├── about.html │ ├── backgrounds │ ├── header-bg.jpg │ ├── nav-bg.jpg │ ├── tagline-fade.jpg │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ ├── anemone.jpg │ ├── fish-face.jpg │ ├── floating.jpg │ ├── jellyfish.jpg │ ├── reef1.jpg │ ├── reef2.jpg │ ├── turtle-bite.jpg │ ├── turtle-face.jpg │ └── what-a-star.jpg │ ├── index.html │ └── style1.css ├── chapter9 ├── Frame.html ├── index.html └── website_files │ ├── about.html │ ├── backgrounds │ ├── header-bg.jpg │ ├── nav-bg.jpg │ ├── tagline-fade.jpg │ └── td.jpg │ ├── contact.html │ ├── divers-circle.jpg │ ├── events.html │ ├── gallery.html │ ├── gallery │ ├── anemone.jpg │ ├── fish-face.jpg │ ├── floating.jpg │ ├── jellyfish.jpg │ ├── reef1.jpg │ ├── reef2.jpg │ ├── turtle-bite.jpg │ ├── turtle-face.jpg │ └── what-a-star.jpg │ ├── index.html │ └── style1.css ├── index.html └── shared ├── archive_styles ├── archive.css ├── book-cover.png └── sitepoint-logo.gif ├── backgrounds ├── header-bg.jpg ├── nav-bg.jpg ├── tagline-fade.jpg └── td.jpg └── gallery_images ├── full_size ├── anemone.jpg ├── fish-face.jpg ├── floating.jpg ├── jellyfish.jpg ├── reef1.jpg ├── reef2.jpg ├── turtle-ascending.jpg ├── turtle-face.jpg ├── turtle-shark-bite.jpg └── what-a-star.jpg └── resized_400_pixels ├── anemone.jpg ├── fish-face.jpg ├── floating.jpg ├── jellyfish.jpg ├── reef1.jpg ├── reef2.jpg ├── turtle-bite.jpg ├── turtle-face.jpg ├── turtle-shark-bite.jpg └── what-a-star.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | *.svn 2 | -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/01addingHTML5shim/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/01addingHTML5shim/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/01addingHTML5shim/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/01addingHTML5shim/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/01addingHTML5shim/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/03headerAndNavStyled/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/03headerAndNavStyled/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/03headerAndNavStyled/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/03headerAndNavStyled/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/03headerAndNavStyled/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/06asideAdded/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/06asideAdded/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/06asideAdded/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/06asideAdded/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/06asideAdded/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/06asideAdded/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/06asideAdded/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/06asideAdded/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/06asideAdded/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/06asideAdded/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/06asideAdded/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/06asideAdded/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/06asideAdded/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/06asideAdded/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/07figAndFigCaption/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/07figAndFigCaption/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/07figAndFigCaption/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/07figAndFigCaption/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/07figAndFigCaption/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/01roundedCorners/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/01roundedCorners/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/01roundedCorners/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/01roundedCorners/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/01roundedCorners/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/01roundedCorners/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/01roundedCorners/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/01roundedCorners/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/01roundedCorners/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/01roundedCorners/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/01roundedCorners/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/01roundedCorners/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/01roundedCorners/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/01roundedCorners/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/02roundedCornersDifferentCorners/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/02roundedCornersDifferentCorners/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/02roundedCornersDifferentCorners/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/02roundedCornersDifferentCorners/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/02roundedCornersDifferentCorners/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/02roundedCornersDifferentCorners/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/02roundedCornersDifferentCorners/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/02roundedCornersDifferentCorners/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/02roundedCornersDifferentCorners/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/02roundedCornersDifferentCorners/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/03boxShadow/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/03boxShadow/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/03boxShadow/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/03boxShadow/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/03boxShadow/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/03boxShadow/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/03boxShadow/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/03boxShadow/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/03boxShadow/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/03boxShadow/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/03boxShadow/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/03boxShadow/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/03boxShadow/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/03boxShadow/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadow/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadow/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadow/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadow/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadow/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadow/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadow/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadow/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadow/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadow/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadow/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadow/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadow/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadow/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadowSubtle/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadowSubtle/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadowSubtle/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadowSubtle/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadowSubtle/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/06googleWebFonts/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/06googleWebFonts/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/06googleWebFonts/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/06googleWebFonts/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/06googleWebFonts/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/06googleWebFonts/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/06googleWebFonts/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/06googleWebFonts/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/06googleWebFonts/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/06googleWebFonts/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/06googleWebFonts/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/06googleWebFonts/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/06googleWebFonts/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/06googleWebFonts/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/final_version_for_chapter/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/final_version_for_chapter/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/final_version_for_chapter/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/final_version_for_chapter/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/final_version_for_chapter/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/final_version_for_chapter/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/final_version_for_chapter/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/final_version_for_chapter/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/final_version_for_chapter/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/final_version_for_chapter/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/final_version_for_chapter/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter10/website_files/final_version_for_chapter/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter11/examples/js/common.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | $("h1").after("

I've just inserted a paragraph

"); 3 | }); -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/01_AddDefaultFormValues/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/01_AddDefaultFormValues/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/01_AddDefaultFormValues/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/01_AddDefaultFormValues/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/01_AddDefaultFormValues/divers-circle.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/01_AddDefaultFormValues/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/01_AddDefaultFormValues/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/01_AddDefaultFormValues/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/01_AddDefaultFormValues/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/01_AddDefaultFormValues/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/01_AddDefaultFormValues/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/01_AddDefaultFormValues/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/01_AddDefaultFormValues/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/01_AddDefaultFormValues/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/02_GalleryCaptionHoverEffect/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/02_GalleryCaptionHoverEffect/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/02_GalleryCaptionHoverEffect/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/02_GalleryCaptionHoverEffect/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/02_GalleryCaptionHoverEffect/divers-circle.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/final_version_for_chapter/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/final_version_for_chapter/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/final_version_for_chapter/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/final_version_for_chapter/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/final_version_for_chapter/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/final_version_for_chapter/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/final_version_for_chapter/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/final_version_for_chapter/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/final_version_for_chapter/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/final_version_for_chapter/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/final_version_for_chapter/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter11/website_files/final_version_for_chapter/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/01_FirebugExamples/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/01_FirebugExamples/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/01_FirebugExamples/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/01_FirebugExamples/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/01_FirebugExamples/divers-circle.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/01_FirebugExamples/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/01_FirebugExamples/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/01_FirebugExamples/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/01_FirebugExamples/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/01_FirebugExamples/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/01_FirebugExamples/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/01_FirebugExamples/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/01_FirebugExamples/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/01_FirebugExamples/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter12/website_files/03_XRayExamples/01_BlockquoteWidthWrong/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/03_XRayExamples/01_BlockquoteWidthWrong/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter12/website_files/03_XRayExamples/01_BlockquoteWidthWrong/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/03_XRayExamples/01_BlockquoteWidthWrong/divers-circle.jpg -------------------------------------------------------------------------------- /chapter12/website_files/03_XRayExamples/01_BlockquoteWidthWrong/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/03_XRayExamples/01_BlockquoteWidthWrong/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter12/website_files/03_XRayExamples/01_BlockquoteWidthWrong/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/03_XRayExamples/01_BlockquoteWidthWrong/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter12/website_files/03_XRayExamples/02_BlockquoteWidthFixed/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/03_XRayExamples/02_BlockquoteWidthFixed/divers-circle.jpg -------------------------------------------------------------------------------- /chapter12/website_files/03_XRayExamples/02_BlockquoteWidthFixed/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/03_XRayExamples/02_BlockquoteWidthFixed/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter12/website_files/03_XRayExamples/02_BlockquoteWidthFixed/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/03_XRayExamples/02_BlockquoteWidthFixed/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/final_version_for_chapter/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/final_version_for_chapter/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/final_version_for_chapter/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/final_version_for_chapter/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/final_version_for_chapter/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/final_version_for_chapter/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/final_version_for_chapter/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/final_version_for_chapter/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/final_version_for_chapter/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/final_version_for_chapter/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/final_version_for_chapter/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter12/website_files/final_version_for_chapter/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/01_statcounter_code/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/01_statcounter_code/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/01_statcounter_code/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/01_statcounter_code/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/01_statcounter_code/divers-circle.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/01_statcounter_code/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/01_statcounter_code/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/01_statcounter_code/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/01_statcounter_code/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/01_statcounter_code/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/01_statcounter_code/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/01_statcounter_code/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/01_statcounter_code/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/01_statcounter_code/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/02_google_search/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/02_google_search/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/02_google_search/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/02_google_search/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/02_google_search/divers-circle.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/02_google_search/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/02_google_search/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/02_google_search/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/02_google_search/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/02_google_search/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/02_google_search/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/02_google_search/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/02_google_search/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/02_google_search/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/03_rollyo_search/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/03_rollyo_search/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/03_rollyo_search/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/03_rollyo_search/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/03_rollyo_search/divers-circle.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/03_rollyo_search/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/03_rollyo_search/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/03_rollyo_search/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/03_rollyo_search/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/03_rollyo_search/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/03_rollyo_search/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/03_rollyo_search/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/03_rollyo_search/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/03_rollyo_search/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/04_rollyo_search_jquery/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/04_rollyo_search_jquery/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/04_rollyo_search_jquery/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/04_rollyo_search_jquery/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/04_rollyo_search_jquery/divers-circle.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/04_rollyo_search_jquery/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/04_rollyo_search_jquery/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/04_rollyo_search_jquery/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/04_rollyo_search_jquery/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/04_rollyo_search_jquery/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/04_rollyo_search_jquery/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/04_rollyo_search_jquery/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/04_rollyo_search_jquery/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/04_rollyo_search_jquery/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/final_version_for_chapter/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/final_version_for_chapter/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/final_version_for_chapter/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/final_version_for_chapter/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/final_version_for_chapter/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/final_version_for_chapter/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/final_version_for_chapter/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/final_version_for_chapter/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/final_version_for_chapter/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/final_version_for_chapter/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/final_version_for_chapter/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter13/website_files/final_version_for_chapter/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter2/website_files/01_skeleton/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /chapter2/website_files/05_clickable_email_and_image/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter2/website_files/05_clickable_email_and_image/divers-circle.jpg -------------------------------------------------------------------------------- /chapter2/website_files/06_adding_structure_with_divs/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter2/website_files/06_adding_structure_with_divs/divers-circle.jpg -------------------------------------------------------------------------------- /chapter2/website_files/07_linking_between_pages/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter2/website_files/07_linking_between_pages/divers-circle.jpg -------------------------------------------------------------------------------- /chapter2/website_files/final_version_for_chapter/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter2/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter3/website_files/04_style_sheet_link/style1.css: -------------------------------------------------------------------------------- 1 | /* 2 | CSS for Bubble Under site 3 | */ 4 | 5 | p { 6 | font-weight: bold; 7 | color: blue; 8 | } -------------------------------------------------------------------------------- /chapter3/website_files/05_body_verdana/style1.css: -------------------------------------------------------------------------------- 1 | /* 2 | CSS for Bubble Under site 3 | */ 4 | body { 5 | font-family: Verdana, Helvetica, Arial, sans-serif; 6 | } 7 | -------------------------------------------------------------------------------- /chapter3/website_files/final_version_for_chapter/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter3/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter4/website_files/17_floated_image/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter4/website_files/17_floated_image/divers-circle.jpg -------------------------------------------------------------------------------- /chapter4/website_files/final_version_for_chapter/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter4/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter5/examples/03_background_images/images/clouds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/examples/03_background_images/images/clouds.jpg -------------------------------------------------------------------------------- /chapter5/examples/03_background_images/images/company-logo-transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/examples/03_background_images/images/company-logo-transparent.gif -------------------------------------------------------------------------------- /chapter5/examples/03_background_images/images/hori-fade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/examples/03_background_images/images/hori-fade.gif -------------------------------------------------------------------------------- /chapter5/examples/03_background_images/images/palm-trees.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/examples/03_background_images/images/palm-trees.jpg -------------------------------------------------------------------------------- /chapter5/examples/03_background_images/images/sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/examples/03_background_images/images/sunset.jpg -------------------------------------------------------------------------------- /chapter5/examples/03_background_images/images/vert-fade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/examples/03_background_images/images/vert-fade.gif -------------------------------------------------------------------------------- /chapter5/examples/04_transparency/images/company-logo--trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/examples/04_transparency/images/company-logo--trans.png -------------------------------------------------------------------------------- /chapter5/examples/04_transparency/images/company-logo-no-trans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/examples/04_transparency/images/company-logo-no-trans.jpg -------------------------------------------------------------------------------- /chapter5/examples/04_transparency/images/company-logo-transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/examples/04_transparency/images/company-logo-transparent.gif -------------------------------------------------------------------------------- /chapter5/examples/04_transparency/images/fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/examples/04_transparency/images/fade.jpg -------------------------------------------------------------------------------- /chapter5/website_files/01_link_in_nav/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/01_link_in_nav/divers-circle.jpg -------------------------------------------------------------------------------- /chapter5/website_files/01_link_in_nav/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/01_link_in_nav/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter5/website_files/02_gallery_one_image/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/02_gallery_one_image/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter5/website_files/03_polaroid_effect/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/03_polaroid_effect/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter5/website_files/04_unstyled_caption/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/04_unstyled_caption/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter5/website_files/05_styled_caption/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/05_styled_caption/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter5/website_files/06_alternate_styled_caption/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/06_alternate_styled_caption/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter5/website_files/07_custom_divider/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/07_custom_divider/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter5/website_files/08_complete_gallery/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/08_complete_gallery/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter5/website_files/08_complete_gallery/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/08_complete_gallery/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter5/website_files/08_complete_gallery/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/08_complete_gallery/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter5/website_files/08_complete_gallery/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/08_complete_gallery/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter5/website_files/08_complete_gallery/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/08_complete_gallery/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter5/website_files/08_complete_gallery/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/08_complete_gallery/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter5/website_files/08_complete_gallery/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/08_complete_gallery/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter5/website_files/08_complete_gallery/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/08_complete_gallery/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter5/website_files/08_complete_gallery/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/08_complete_gallery/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter5/website_files/09_navigation_background/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/09_navigation_background/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter5/website_files/10_tagline_background/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/10_tagline_background/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter5/website_files/10_tagline_background/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/10_tagline_background/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter5/website_files/11_heading_background/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/11_heading_background/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter5/website_files/11_heading_background/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/11_heading_background/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter5/website_files/11_heading_background/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/11_heading_background/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/final_version_for_chapter/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/final_version_for_chapter/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/final_version_for_chapter/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/final_version_for_chapter/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/final_version_for_chapter/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/final_version_for_chapter/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/final_version_for_chapter/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/final_version_for_chapter/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/final_version_for_chapter/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/final_version_for_chapter/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter5/website_files/final_version_for_chapter/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter6/website_files/01_events_first_draft/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/01_events_first_draft/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/01_events_first_draft/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/01_events_first_draft/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/01_events_first_draft/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/01_events_first_draft/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter6/website_files/02_events_table/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/02_events_table/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/02_events_table/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/02_events_table/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/02_events_table/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/02_events_table/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter6/website_files/03_events_table_borders/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/03_events_table_borders/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/03_events_table_borders/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/03_events_table_borders/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/03_events_table_borders/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/03_events_table_borders/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter6/website_files/04_styled_table_header/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/04_styled_table_header/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/04_styled_table_header/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/04_styled_table_header/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/04_styled_table_header/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/04_styled_table_header/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter6/website_files/05_stylish_table_cells/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/05_stylish_table_cells/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/05_stylish_table_cells/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/05_stylish_table_cells/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/05_stylish_table_cells/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/05_stylish_table_cells/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter6/website_files/05_stylish_table_cells/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/05_stylish_table_cells/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/final_version_for_chapter/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/final_version_for_chapter/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/final_version_for_chapter/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/final_version_for_chapter/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/final_version_for_chapter/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/final_version_for_chapter/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/final_version_for_chapter/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/final_version_for_chapter/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/final_version_for_chapter/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/final_version_for_chapter/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/final_version_for_chapter/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter6/website_files/final_version_for_chapter/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter7/website_files/01_new_paragraph/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/01_new_paragraph/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/01_new_paragraph/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/01_new_paragraph/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/01_new_paragraph/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/01_new_paragraph/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/01_new_paragraph/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/01_new_paragraph/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter7/website_files/02_form_and_fieldset/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/02_form_and_fieldset/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/02_form_and_fieldset/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/02_form_and_fieldset/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/02_form_and_fieldset/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/02_form_and_fieldset/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/02_form_and_fieldset/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/02_form_and_fieldset/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter7/website_files/03_temporary_form_content/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/03_temporary_form_content/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/03_temporary_form_content/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/03_temporary_form_content/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/03_temporary_form_content/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/03_temporary_form_content/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/03_temporary_form_content/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/03_temporary_form_content/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter7/website_files/04_styled_fieldset/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/04_styled_fieldset/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/04_styled_fieldset/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/04_styled_fieldset/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/04_styled_fieldset/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/04_styled_fieldset/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/04_styled_fieldset/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/04_styled_fieldset/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter7/website_files/05_contact_name/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/05_contact_name/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/05_contact_name/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/05_contact_name/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/05_contact_name/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/05_contact_name/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/05_contact_name/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/05_contact_name/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter7/website_files/06_other_controls/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/06_other_controls/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/06_other_controls/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/06_other_controls/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/06_other_controls/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/06_other_controls/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/06_other_controls/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/06_other_controls/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter7/website_files/07_aligned_inputs/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/07_aligned_inputs/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/07_aligned_inputs/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/07_aligned_inputs/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/07_aligned_inputs/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/07_aligned_inputs/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/07_aligned_inputs/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/07_aligned_inputs/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter7/website_files/08_region_dropdown/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/08_region_dropdown/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/08_region_dropdown/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/08_region_dropdown/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/08_region_dropdown/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/08_region_dropdown/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/08_region_dropdown/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/08_region_dropdown/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter7/website_files/09_text_area/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/09_text_area/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/09_text_area/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/09_text_area/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/09_text_area/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/09_text_area/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/09_text_area/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/09_text_area/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter7/website_files/10_radios_and_checkboxes/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/10_radios_and_checkboxes/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/10_radios_and_checkboxes/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/10_radios_and_checkboxes/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/10_radios_and_checkboxes/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/10_radios_and_checkboxes/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/10_radios_and_checkboxes/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/10_radios_and_checkboxes/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter7/website_files/11_submit_button/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/11_submit_button/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/11_submit_button/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/11_submit_button/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/11_submit_button/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/11_submit_button/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/11_submit_button/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/11_submit_button/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/final_version_for_chapter/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/final_version_for_chapter/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/final_version_for_chapter/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/final_version_for_chapter/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/final_version_for_chapter/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/final_version_for_chapter/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/final_version_for_chapter/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/final_version_for_chapter/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/final_version_for_chapter/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/final_version_for_chapter/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/final_version_for_chapter/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter7/website_files/final_version_for_chapter/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/01_FacebookLikeBox/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/01_FacebookLikeBox/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/01_FacebookLikeBox/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/01_FacebookLikeBox/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/01_FacebookLikeBox/divers-circle.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/01_FacebookLikeBox/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/01_FacebookLikeBox/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/01_FacebookLikeBox/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/01_FacebookLikeBox/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/01_FacebookLikeBox/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/01_FacebookLikeBox/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/01_FacebookLikeBox/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/01_FacebookLikeBox/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/01_FacebookLikeBox/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/02_FacebookLikeBox_Resized/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/02_FacebookLikeBox_Resized/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/02_FacebookLikeBox_Resized/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/02_FacebookLikeBox_Resized/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/02_FacebookLikeBox_Resized/divers-circle.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/02_FacebookLikeBox_Resized/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/02_FacebookLikeBox_Resized/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/02_FacebookLikeBox_Resized/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/02_FacebookLikeBox_Resized/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/02_FacebookLikeBox_Resized/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/02_FacebookLikeBox_Resized/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/02_FacebookLikeBox_Resized/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/02_FacebookLikeBox_Resized/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/02_FacebookLikeBox_Resized/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter8/website_files/03_FacebookLikeBox_ResizedHeight/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/03_FacebookLikeBox_ResizedHeight/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter8/website_files/03_FacebookLikeBox_ResizedHeight/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/03_FacebookLikeBox_ResizedHeight/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter8/website_files/03_FacebookLikeBox_ResizedHeight/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/03_FacebookLikeBox_ResizedHeight/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter8/website_files/03_FacebookLikeBox_ResizedHeight/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/03_FacebookLikeBox_ResizedHeight/divers-circle.jpg -------------------------------------------------------------------------------- /chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/04_TwitterProfile/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/04_TwitterProfile/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/04_TwitterProfile/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/04_TwitterProfile/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/04_TwitterProfile/divers-circle.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/04_TwitterProfile/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/04_TwitterProfile/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/04_TwitterProfile/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/04_TwitterProfile/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/04_TwitterProfile/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/04_TwitterProfile/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/04_TwitterProfile/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/04_TwitterProfile/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/04_TwitterProfile/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/05_TwitterProfileAndFollow/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/05_TwitterProfileAndFollow/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/05_TwitterProfileAndFollow/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/05_TwitterProfileAndFollow/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/05_TwitterProfileAndFollow/divers-circle.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/05_TwitterProfileAndFollow/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/05_TwitterProfileAndFollow/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/05_TwitterProfileAndFollow/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/05_TwitterProfileAndFollow/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/05_TwitterProfileAndFollow/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/05_TwitterProfileAndFollow/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/05_TwitterProfileAndFollow/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/05_TwitterProfileAndFollow/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/05_TwitterProfileAndFollow/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter8/website_files/06_SimplifiedFaceBookAndTwitterLayout/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/06_SimplifiedFaceBookAndTwitterLayout/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter8/website_files/06_SimplifiedFaceBookAndTwitterLayout/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/06_SimplifiedFaceBookAndTwitterLayout/divers-circle.jpg -------------------------------------------------------------------------------- /chapter8/website_files/06_SimplifiedFaceBookAndTwitterLayout/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/06_SimplifiedFaceBookAndTwitterLayout/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter8/website_files/06_SimplifiedFaceBookAndTwitterLayout/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/06_SimplifiedFaceBookAndTwitterLayout/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter8/website_files/06_SimplifiedFaceBookAndTwitterLayout/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/06_SimplifiedFaceBookAndTwitterLayout/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter8/website_files/06_SimplifiedFaceBookAndTwitterLayout/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter8/website_files/06_SimplifiedFaceBookAndTwitterLayout/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter9/website_files/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter9/website_files/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter9/website_files/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter9/website_files/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter9/website_files/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter9/website_files/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter9/website_files/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter9/website_files/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter9/website_files/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter9/website_files/divers-circle.jpg -------------------------------------------------------------------------------- /chapter9/website_files/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter9/website_files/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter9/website_files/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter9/website_files/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter9/website_files/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter9/website_files/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter9/website_files/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter9/website_files/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter9/website_files/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter9/website_files/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter9/website_files/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter9/website_files/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter9/website_files/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter9/website_files/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter9/website_files/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter9/website_files/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter9/website_files/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/chapter9/website_files/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /shared/archive_styles/book-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/archive_styles/book-cover.png -------------------------------------------------------------------------------- /shared/archive_styles/sitepoint-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/archive_styles/sitepoint-logo.gif -------------------------------------------------------------------------------- /shared/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /shared/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /shared/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /shared/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/backgrounds/td.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/full_size/anemone.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/full_size/fish-face.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/full_size/floating.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/full_size/jellyfish.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/full_size/reef1.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/full_size/reef2.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/turtle-ascending.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/full_size/turtle-ascending.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/full_size/turtle-face.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/turtle-shark-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/full_size/turtle-shark-bite.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/full_size/what-a-star.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/resized_400_pixels/anemone.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/resized_400_pixels/fish-face.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/resized_400_pixels/floating.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/resized_400_pixels/jellyfish.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/resized_400_pixels/reef1.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/resized_400_pixels/reef2.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/resized_400_pixels/turtle-bite.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/resized_400_pixels/turtle-face.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/turtle-shark-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/resized_400_pixels/turtle-shark-bite.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/76a6eb91d05c042f6e6e61d646946cabe0cee9ab/shared/gallery_images/resized_400_pixels/what-a-star.jpg --------------------------------------------------------------------------------