├── .gitignore ├── shared ├── backgrounds │ ├── td.jpg │ ├── nav-bg.jpg │ ├── header-bg.jpg │ └── tagline-fade.jpg ├── archive_styles │ ├── book-cover.png │ └── sitepoint-logo.gif └── gallery_images │ ├── full_size │ ├── reef1.jpg │ ├── reef2.jpg │ ├── anemone.jpg │ ├── floating.jpg │ ├── fish-face.jpg │ ├── jellyfish.jpg │ ├── turtle-face.jpg │ ├── what-a-star.jpg │ ├── turtle-ascending.jpg │ └── turtle-shark-bite.jpg │ └── resized_400_pixels │ ├── anemone.jpg │ ├── reef1.jpg │ ├── reef2.jpg │ ├── fish-face.jpg │ ├── floating.jpg │ ├── jellyfish.jpg │ ├── turtle-bite.jpg │ ├── turtle-face.jpg │ ├── what-a-star.jpg │ └── turtle-shark-bite.jpg ├── chapter11 ├── examples │ └── js │ │ └── common.js └── website_files │ ├── 01_AddDefaultFormValues │ ├── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── divers-circle.jpg │ └── gallery │ │ ├── anemone.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── final_version_for_chapter │ ├── divers-circle.jpg │ ├── gallery │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ └── 02_GalleryCaptionHoverEffect │ ├── backgrounds │ ├── td.jpg │ ├── nav-bg.jpg │ ├── header-bg.jpg │ └── tagline-fade.jpg │ ├── divers-circle.jpg │ └── gallery │ ├── anemone.jpg │ ├── reef1.jpg │ ├── reef2.jpg │ ├── fish-face.jpg │ ├── floating.jpg │ ├── jellyfish.jpg │ ├── turtle-bite.jpg │ ├── turtle-face.jpg │ └── what-a-star.jpg ├── chapter9 └── website_files │ ├── backgrounds │ ├── td.jpg │ ├── nav-bg.jpg │ ├── header-bg.jpg │ └── tagline-fade.jpg │ ├── divers-circle.jpg │ └── gallery │ ├── anemone.jpg │ ├── reef1.jpg │ ├── reef2.jpg │ ├── fish-face.jpg │ ├── floating.jpg │ ├── jellyfish.jpg │ ├── turtle-bite.jpg │ ├── turtle-face.jpg │ └── what-a-star.jpg ├── chapter5 ├── examples │ ├── 04_transparency │ │ └── images │ │ │ ├── fade.jpg │ │ │ ├── company-logo--trans.png │ │ │ ├── company-logo-no-trans.jpg │ │ │ └── company-logo-transparent.gif │ └── 03_background_images │ │ └── images │ │ ├── clouds.jpg │ │ ├── sunset.jpg │ │ ├── hori-fade.gif │ │ ├── vert-fade.gif │ │ ├── palm-trees.jpg │ │ └── company-logo-transparent.gif └── website_files │ ├── 01_link_in_nav │ ├── divers-circle.jpg │ └── gallery │ │ └── turtle-bite.jpg │ ├── 08_complete_gallery │ └── gallery │ │ ├── anemone.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── 05_styled_caption │ └── gallery │ │ └── turtle-bite.jpg │ ├── 07_custom_divider │ └── gallery │ │ └── turtle-bite.jpg │ ├── 02_gallery_one_image │ └── gallery │ │ └── turtle-bite.jpg │ ├── 03_polaroid_effect │ └── gallery │ │ └── turtle-bite.jpg │ ├── 04_unstyled_caption │ └── gallery │ │ └── turtle-bite.jpg │ ├── 10_tagline_background │ └── backgrounds │ │ ├── nav-bg.jpg │ │ └── tagline-fade.jpg │ ├── 11_heading_background │ └── backgrounds │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── final_version_for_chapter │ ├── divers-circle.jpg │ ├── gallery │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── anemone.jpg │ │ ├── floating.jpg │ │ ├── fish-face.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ └── backgrounds │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── 09_navigation_background │ └── backgrounds │ │ └── nav-bg.jpg │ └── 06_alternate_styled_caption │ └── gallery │ └── turtle-bite.jpg ├── chapter3 └── website_files │ ├── 04_style_sheet_link │ └── style1.css │ ├── 05_body_verdana │ └── style1.css │ └── final_version_for_chapter │ └── divers-circle.jpg ├── chapter7 └── website_files │ ├── 09_text_area │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── 05_contact_name │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── 01_new_paragraph │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── 06_other_controls │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── 07_aligned_inputs │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── 11_submit_button │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── 02_form_and_fieldset │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── 04_styled_fieldset │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── 08_region_dropdown │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── 03_temporary_form_content │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── 10_radios_and_checkboxes │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ └── final_version_for_chapter │ ├── backgrounds │ ├── td.jpg │ ├── nav-bg.jpg │ ├── header-bg.jpg │ └── tagline-fade.jpg │ ├── divers-circle.jpg │ └── gallery │ ├── reef1.jpg │ ├── reef2.jpg │ ├── anemone.jpg │ ├── floating.jpg │ ├── fish-face.jpg │ ├── jellyfish.jpg │ ├── turtle-bite.jpg │ ├── turtle-face.jpg │ └── what-a-star.jpg ├── chapter4 └── website_files │ ├── 17_floated_image │ └── divers-circle.jpg │ └── final_version_for_chapter │ └── divers-circle.jpg ├── chapter13 └── website_files │ ├── 02_google_search │ ├── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── divers-circle.jpg │ └── gallery │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── 03_rollyo_search │ ├── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── divers-circle.jpg │ └── gallery │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── 01_statcounter_code │ ├── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── divers-circle.jpg │ └── gallery │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── anemone.jpg │ │ ├── floating.jpg │ │ ├── fish-face.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── 04_rollyo_search_jquery │ ├── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── divers-circle.jpg │ └── gallery │ │ ├── anemone.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ └── final_version_for_chapter │ ├── divers-circle.jpg │ ├── gallery │ ├── reef1.jpg │ ├── reef2.jpg │ ├── anemone.jpg │ ├── fish-face.jpg │ ├── floating.jpg │ ├── jellyfish.jpg │ ├── turtle-bite.jpg │ ├── turtle-face.jpg │ └── what-a-star.jpg │ └── backgrounds │ ├── td.jpg │ ├── nav-bg.jpg │ ├── header-bg.jpg │ └── tagline-fade.jpg ├── chapter8 └── website_files │ ├── 01_FacebookLikeBox │ ├── divers-circle.jpg │ ├── gallery │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── anemone.jpg │ │ ├── floating.jpg │ │ ├── fish-face.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── 04_TwitterProfile │ ├── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── divers-circle.jpg │ └── gallery │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── 02_FacebookLikeBox_Resized │ ├── divers-circle.jpg │ ├── gallery │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── 05_TwitterProfileAndFollow │ ├── divers-circle.jpg │ ├── gallery │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── 03_FacebookLikeBox_ResizedHeight │ ├── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── divers-circle.jpg │ └── gallery │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ └── 06_SimplifiedFaceBookAndTwitterLayout │ ├── backgrounds │ ├── td.jpg │ ├── nav-bg.jpg │ ├── header-bg.jpg │ └── tagline-fade.jpg │ ├── divers-circle.jpg │ └── gallery │ ├── reef1.jpg │ ├── reef2.jpg │ ├── anemone.jpg │ ├── fish-face.jpg │ ├── floating.jpg │ ├── jellyfish.jpg │ ├── turtle-bite.jpg │ ├── turtle-face.jpg │ └── what-a-star.jpg ├── chapter10 └── website_files │ ├── 02_CSS3 │ ├── 03boxShadow │ │ ├── backgrounds │ │ │ ├── td.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── header-bg.jpg │ │ │ └── tagline-fade.jpg │ │ ├── divers-circle.jpg │ │ └── gallery │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── anemone.jpg │ │ │ ├── floating.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ ├── 05textShadow │ │ ├── divers-circle.jpg │ │ ├── gallery │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ └── backgrounds │ │ │ ├── td.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── header-bg.jpg │ │ │ └── tagline-fade.jpg │ ├── 01roundedCorners │ │ ├── backgrounds │ │ │ ├── td.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── header-bg.jpg │ │ │ └── tagline-fade.jpg │ │ ├── divers-circle.jpg │ │ └── gallery │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── anemone.jpg │ │ │ ├── floating.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ ├── 06googleWebFonts │ │ ├── backgrounds │ │ │ ├── td.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── header-bg.jpg │ │ │ └── tagline-fade.jpg │ │ ├── divers-circle.jpg │ │ └── gallery │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── anemone.jpg │ │ │ ├── floating.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ ├── 05textShadowSubtle │ │ ├── backgrounds │ │ │ ├── td.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── header-bg.jpg │ │ │ └── tagline-fade.jpg │ │ ├── divers-circle.jpg │ │ └── gallery │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ ├── 08googleWebFontsTooMany │ │ ├── backgrounds │ │ │ ├── td.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── header-bg.jpg │ │ │ └── tagline-fade.jpg │ │ ├── divers-circle.jpg │ │ └── gallery │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ ├── 04boxShadowMultipleShadows │ │ ├── backgrounds │ │ │ ├── td.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── header-bg.jpg │ │ │ └── tagline-fade.jpg │ │ ├── divers-circle.jpg │ │ └── gallery │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── anemone.jpg │ │ │ ├── floating.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ ├── 07googleWebFontsLuckiestGuy │ │ ├── divers-circle.jpg │ │ ├── gallery │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ └── backgrounds │ │ │ ├── td.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── header-bg.jpg │ │ │ └── tagline-fade.jpg │ └── 02roundedCornersDifferentCorners │ │ ├── divers-circle.jpg │ │ ├── gallery │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── 01_HTML5 │ ├── 06asideAdded │ │ ├── backgrounds │ │ │ ├── td.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── header-bg.jpg │ │ │ └── tagline-fade.jpg │ │ ├── divers-circle.jpg │ │ └── gallery │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ ├── 01addingHTML5shim │ │ ├── backgrounds │ │ │ ├── td.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── header-bg.jpg │ │ │ └── tagline-fade.jpg │ │ ├── divers-circle.jpg │ │ └── gallery │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ ├── 07figAndFigCaption │ │ ├── divers-circle.jpg │ │ ├── gallery │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── anemone.jpg │ │ │ ├── floating.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ └── backgrounds │ │ │ ├── td.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── header-bg.jpg │ │ │ └── tagline-fade.jpg │ ├── 03headerAndNavStyled │ │ ├── backgrounds │ │ │ ├── td.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── header-bg.jpg │ │ │ └── tagline-fade.jpg │ │ ├── divers-circle.jpg │ │ └── gallery │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── anemone.jpg │ │ │ ├── floating.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ ├── 02replacingHeaderAndNav │ │ ├── divers-circle.jpg │ │ ├── gallery │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── anemone.jpg │ │ │ ├── floating.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ │ └── backgrounds │ │ │ ├── td.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── header-bg.jpg │ │ │ └── tagline-fade.jpg │ ├── 04headerAndNavStyledIE │ │ ├── backgrounds │ │ │ ├── td.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── header-bg.jpg │ │ │ └── tagline-fade.jpg │ │ ├── divers-circle.jpg │ │ └── gallery │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── anemone.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── floating.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ └── 05leftNavTopMarginFixed │ │ ├── divers-circle.jpg │ │ ├── gallery │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── anemone.jpg │ │ ├── floating.jpg │ │ ├── fish-face.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ └── final_version_for_chapter │ ├── divers-circle.jpg │ ├── gallery │ ├── reef1.jpg │ ├── reef2.jpg │ ├── anemone.jpg │ ├── fish-face.jpg │ ├── floating.jpg │ ├── jellyfish.jpg │ ├── turtle-bite.jpg │ ├── turtle-face.jpg │ └── what-a-star.jpg │ └── backgrounds │ ├── td.jpg │ ├── nav-bg.jpg │ ├── header-bg.jpg │ └── tagline-fade.jpg ├── chapter12 └── website_files │ ├── 01_FirebugExamples │ ├── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── divers-circle.jpg │ └── gallery │ │ ├── anemone.jpg │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── final_version_for_chapter │ ├── divers-circle.jpg │ ├── gallery │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── anemone.jpg │ │ ├── fish-face.jpg │ │ ├── floating.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── 03_XRayExamples │ ├── 01_BlockquoteWidthWrong │ │ ├── backgrounds │ │ │ ├── td.jpg │ │ │ ├── nav-bg.jpg │ │ │ ├── header-bg.jpg │ │ │ └── tagline-fade.jpg │ │ ├── divers-circle.jpg │ │ └── gallery │ │ │ ├── reef1.jpg │ │ │ ├── reef2.jpg │ │ │ ├── anemone.jpg │ │ │ ├── floating.jpg │ │ │ ├── fish-face.jpg │ │ │ ├── jellyfish.jpg │ │ │ ├── turtle-bite.jpg │ │ │ ├── turtle-face.jpg │ │ │ └── what-a-star.jpg │ └── 02_BlockquoteWidthFixed │ │ ├── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ │ ├── divers-circle.jpg │ │ └── gallery │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── anemone.jpg │ │ ├── floating.jpg │ │ ├── fish-face.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ └── 02_WebDevToolbarExamples │ └── 01_WrongAltAttributes │ ├── backgrounds │ ├── td.jpg │ ├── nav-bg.jpg │ └── header-bg.jpg │ ├── divers-circle.jpg │ └── gallery │ ├── reef1.jpg │ ├── reef2.jpg │ ├── anemone.jpg │ ├── fish-face.jpg │ ├── floating.jpg │ ├── jellyfish.jpg │ ├── turtle-bite.jpg │ ├── turtle-face.jpg │ └── what-a-star.jpg ├── chapter6 └── website_files │ ├── 02_events_table │ └── backgrounds │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── 05_stylish_table_cells │ └── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── 01_events_first_draft │ └── backgrounds │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── final_version_for_chapter │ ├── backgrounds │ │ ├── td.jpg │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ ├── divers-circle.jpg │ └── gallery │ │ ├── reef1.jpg │ │ ├── reef2.jpg │ │ ├── anemone.jpg │ │ ├── floating.jpg │ │ ├── fish-face.jpg │ │ ├── jellyfish.jpg │ │ ├── turtle-bite.jpg │ │ ├── turtle-face.jpg │ │ └── what-a-star.jpg │ ├── 03_events_table_borders │ └── backgrounds │ │ ├── nav-bg.jpg │ │ ├── header-bg.jpg │ │ └── tagline-fade.jpg │ └── 04_styled_table_header │ └── backgrounds │ ├── nav-bg.jpg │ ├── header-bg.jpg │ └── tagline-fade.jpg └── chapter2 └── website_files ├── 07_linking_between_pages └── divers-circle.jpg ├── final_version_for_chapter └── divers-circle.jpg ├── 05_clickable_email_and_image └── divers-circle.jpg ├── 06_adding_structure_with_divs └── divers-circle.jpg └── 01_skeleton └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.svn 2 | -------------------------------------------------------------------------------- /shared/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/backgrounds/td.jpg -------------------------------------------------------------------------------- /shared/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /shared/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /shared/archive_styles/book-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/archive_styles/book-cover.png -------------------------------------------------------------------------------- /shared/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter11/examples/js/common.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | $("h1").after("
I've just inserted a paragraph
"); 3 | }); -------------------------------------------------------------------------------- /chapter9/website_files/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter9/website_files/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter9/website_files/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter9/website_files/divers-circle.jpg -------------------------------------------------------------------------------- /chapter9/website_files/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter9/website_files/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter9/website_files/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter9/website_files/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter9/website_files/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter9/website_files/gallery/reef2.jpg -------------------------------------------------------------------------------- /shared/archive_styles/sitepoint-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/archive_styles/sitepoint-logo.gif -------------------------------------------------------------------------------- /shared/gallery_images/full_size/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/full_size/reef1.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/full_size/reef2.jpg -------------------------------------------------------------------------------- /chapter9/website_files/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter9/website_files/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter9/website_files/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter9/website_files/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter9/website_files/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter9/website_files/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/full_size/anemone.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/full_size/floating.jpg -------------------------------------------------------------------------------- /chapter9/website_files/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter9/website_files/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter9/website_files/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter9/website_files/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter9/website_files/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter9/website_files/gallery/turtle-face.jpg -------------------------------------------------------------------------------- /chapter9/website_files/gallery/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter9/website_files/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/full_size/fish-face.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/full_size/jellyfish.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/full_size/turtle-face.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/full_size/what-a-star.jpg -------------------------------------------------------------------------------- /chapter5/examples/04_transparency/images/fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/examples/04_transparency/images/fade.jpg -------------------------------------------------------------------------------- /chapter9/website_files/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter9/website_files/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter9/website_files/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter9/website_files/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/turtle-ascending.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/full_size/turtle-ascending.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/resized_400_pixels/anemone.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/resized_400_pixels/reef1.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/resized_400_pixels/reef2.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 | } -------------------------------------------------------------------------------- /chapter7/website_files/09_text_area/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/09_text_area/backgrounds/td.jpg -------------------------------------------------------------------------------- /shared/gallery_images/full_size/turtle-shark-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/full_size/turtle-shark-bite.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/resized_400_pixels/fish-face.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/resized_400_pixels/floating.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/resized_400_pixels/jellyfish.jpg -------------------------------------------------------------------------------- /chapter4/website_files/17_floated_image/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter4/website_files/17_floated_image/divers-circle.jpg -------------------------------------------------------------------------------- /chapter5/examples/03_background_images/images/clouds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/examples/03_background_images/images/clouds.jpg -------------------------------------------------------------------------------- /chapter5/examples/03_background_images/images/sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/examples/03_background_images/images/sunset.jpg -------------------------------------------------------------------------------- /chapter5/website_files/01_link_in_nav/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/01_link_in_nav/divers-circle.jpg -------------------------------------------------------------------------------- /chapter7/website_files/05_contact_name/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/05_contact_name/backgrounds/td.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/resized_400_pixels/turtle-bite.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/resized_400_pixels/turtle-face.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/what-a-star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/resized_400_pixels/what-a-star.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/02_google_search/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/02_google_search/divers-circle.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/02_google_search/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/02_google_search/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/03_rollyo_search/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/03_rollyo_search/divers-circle.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/03_rollyo_search/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/03_rollyo_search/gallery/reef2.jpg -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /chapter5/examples/03_background_images/images/hori-fade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/examples/03_background_images/images/hori-fade.gif -------------------------------------------------------------------------------- /chapter5/examples/03_background_images/images/vert-fade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/examples/03_background_images/images/vert-fade.gif -------------------------------------------------------------------------------- /chapter7/website_files/01_new_paragraph/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/01_new_paragraph/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter7/website_files/06_other_controls/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/06_other_controls/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter7/website_files/07_aligned_inputs/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/07_aligned_inputs/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter7/website_files/09_text_area/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/09_text_area/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/11_submit_button/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/11_submit_button/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/01_FacebookLikeBox/divers-circle.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/01_FacebookLikeBox/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/01_FacebookLikeBox/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/04_TwitterProfile/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/04_TwitterProfile/divers-circle.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/04_TwitterProfile/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/04_TwitterProfile/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/03boxShadow/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/03boxShadow/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/03boxShadow/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/03boxShadow/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/05textShadow/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/05textShadow/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/05textShadow/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter12/website_files/01_FirebugExamples/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter12/website_files/01_FirebugExamples/divers-circle.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter12/website_files/01_FirebugExamples/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter12/website_files/01_FirebugExamples/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter12/website_files/01_FirebugExamples/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/01_statcounter_code/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/01_statcounter_code/divers-circle.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/01_statcounter_code/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/01_statcounter_code/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter13/website_files/02_google_search/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/02_google_search/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter13/website_files/03_rollyo_search/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/03_rollyo_search/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter5/examples/03_background_images/images/palm-trees.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/examples/03_background_images/images/palm-trees.jpg -------------------------------------------------------------------------------- /chapter5/website_files/01_link_in_nav/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/01_link_in_nav/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter5/website_files/08_complete_gallery/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/08_complete_gallery/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter5/website_files/08_complete_gallery/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/08_complete_gallery/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter5/website_files/08_complete_gallery/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/08_complete_gallery/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter6/website_files/02_events_table/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/02_events_table/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/01_new_paragraph/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/01_new_paragraph/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/02_form_and_fieldset/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/02_form_and_fieldset/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter7/website_files/04_styled_fieldset/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/04_styled_fieldset/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter7/website_files/05_contact_name/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/05_contact_name/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/08_region_dropdown/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter7/website_files/09_text_area/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/11_submit_button/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/11_submit_button/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/01_FacebookLikeBox/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/01_FacebookLikeBox/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/01_FacebookLikeBox/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/04_TwitterProfile/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/04_TwitterProfile/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/04_TwitterProfile/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/04_TwitterProfile/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /shared/gallery_images/resized_400_pixels/turtle-shark-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/shared/gallery_images/resized_400_pixels/turtle-shark-bite.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/06asideAdded/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/06asideAdded/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/06asideAdded/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/06asideAdded/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/03boxShadow/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/03boxShadow/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/05textShadow/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/05textShadow/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter12/website_files/01_FirebugExamples/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter12/website_files/01_FirebugExamples/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter12/website_files/01_FirebugExamples/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/01_statcounter_code/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/01_statcounter_code/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/02_google_search/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter13/website_files/02_google_search/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/03_rollyo_search/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter13/website_files/03_rollyo_search/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter5/examples/04_transparency/images/company-logo--trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/examples/04_transparency/images/company-logo--trans.png -------------------------------------------------------------------------------- /chapter5/website_files/05_styled_caption/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/05_styled_caption/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter5/website_files/07_custom_divider/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/07_custom_divider/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter5/website_files/08_complete_gallery/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter5/website_files/08_complete_gallery/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter5/website_files/08_complete_gallery/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/08_complete_gallery/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter6/website_files/02_events_table/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/02_events_table/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/05_stylish_table_cells/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/05_stylish_table_cells/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter7/website_files/04_styled_fieldset/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/04_styled_fieldset/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/05_contact_name/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/05_contact_name/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/06_other_controls/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/06_other_controls/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/07_aligned_inputs/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/07_aligned_inputs/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/08_region_dropdown/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/08_region_dropdown/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/09_text_area/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/09_text_area/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/01_FacebookLikeBox/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/01_FacebookLikeBox/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/01_FacebookLikeBox/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/04_TwitterProfile/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/04_TwitterProfile/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter8/website_files/04_TwitterProfile/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter10/website_files/01_HTML5/06asideAdded/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/06asideAdded/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/01roundedCorners/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/01roundedCorners/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/01roundedCorners/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/01roundedCorners/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/03boxShadow/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/03boxShadow/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/03boxShadow/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter10/website_files/02_CSS3/03boxShadow/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/05textShadow/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter10/website_files/02_CSS3/05textShadow/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/05textShadow/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/06googleWebFonts/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/06googleWebFonts/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/06googleWebFonts/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/06googleWebFonts/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter10/website_files/final_version_for_chapter/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/01_AddDefaultFormValues/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/01_AddDefaultFormValues/divers-circle.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/01_AddDefaultFormValues/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/01_AddDefaultFormValues/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/01_AddDefaultFormValues/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter11/website_files/final_version_for_chapter/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter12/website_files/01_FirebugExamples/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter12/website_files/01_FirebugExamples/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter12/website_files/01_FirebugExamples/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter12/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter12/website_files/final_version_for_chapter/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/01_statcounter_code/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/01_statcounter_code/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/01_statcounter_code/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/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/HEAD/chapter13/website_files/02_google_search/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/03_rollyo_search/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter13/website_files/04_rollyo_search_jquery/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter13/website_files/04_rollyo_search_jquery/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter13/website_files/final_version_for_chapter/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter2/website_files/07_linking_between_pages/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter2/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter3/website_files/final_version_for_chapter/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter3/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter4/website_files/final_version_for_chapter/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter4/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter5/examples/04_transparency/images/company-logo-no-trans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/examples/04_transparency/images/company-logo-no-trans.jpg -------------------------------------------------------------------------------- /chapter5/website_files/02_gallery_one_image/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter5/website_files/04_unstyled_caption/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter5/website_files/08_complete_gallery/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter5/website_files/08_complete_gallery/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter5/website_files/10_tagline_background/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/10_tagline_background/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter5/website_files/11_heading_background/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/11_heading_background/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter5/website_files/final_version_for_chapter/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter6/website_files/01_events_first_draft/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/01_events_first_draft/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/02_events_table/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/02_events_table/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter6/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter6/website_files/final_version_for_chapter/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter7/website_files/01_new_paragraph/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/01_new_paragraph/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/02_form_and_fieldset/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/02_form_and_fieldset/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/03_temporary_form_content/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter7/website_files/04_styled_fieldset/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/05_contact_name/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/05_contact_name/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/06_other_controls/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/06_other_controls/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/07_aligned_inputs/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/07_aligned_inputs/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/08_region_dropdown/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/08_region_dropdown/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/10_radios_and_checkboxes/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter7/website_files/11_submit_button/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter7/website_files/final_version_for_chapter/divers-circle.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter7/website_files/final_version_for_chapter/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/01_FacebookLikeBox/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/01_FacebookLikeBox/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter8/website_files/01_FacebookLikeBox/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/02_FacebookLikeBox_Resized/divers-circle.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/02_FacebookLikeBox_Resized/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/02_FacebookLikeBox_Resized/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/04_TwitterProfile/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/05_TwitterProfileAndFollow/divers-circle.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/05_TwitterProfileAndFollow/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/05_TwitterProfileAndFollow/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/01addingHTML5shim/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/01addingHTML5shim/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/06asideAdded/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter10/website_files/01_HTML5/06asideAdded/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/07figAndFigCaption/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/01roundedCorners/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/01roundedCorners/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/03boxShadow/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter10/website_files/02_CSS3/05textShadow/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/05textShadowSubtle/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/05textShadowSubtle/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/06googleWebFonts/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/06googleWebFonts/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/final_version_for_chapter/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/final_version_for_chapter/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/01_AddDefaultFormValues/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/01_AddDefaultFormValues/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/01_AddDefaultFormValues/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/final_version_for_chapter/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/final_version_for_chapter/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter12/website_files/01_FirebugExamples/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter12/website_files/final_version_for_chapter/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter12/website_files/final_version_for_chapter/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/01_statcounter_code/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/02_google_search/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/02_google_search/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter13/website_files/03_rollyo_search/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/03_rollyo_search/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter13/website_files/04_rollyo_search_jquery/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/final_version_for_chapter/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/final_version_for_chapter/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter2/website_files/05_clickable_email_and_image/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter2/website_files/05_clickable_email_and_image/divers-circle.jpg -------------------------------------------------------------------------------- /chapter5/examples/04_transparency/images/company-logo-transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/examples/04_transparency/images/company-logo-transparent.gif -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/final_version_for_chapter/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/final_version_for_chapter/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter6/website_files/03_events_table_borders/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/03_events_table_borders/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/04_styled_table_header/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/04_styled_table_header/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/05_stylish_table_cells/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/05_stylish_table_cells/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/final_version_for_chapter/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/final_version_for_chapter/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter7/website_files/01_new_paragraph/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/01_new_paragraph/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/02_form_and_fieldset/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/02_form_and_fieldset/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/06_other_controls/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/06_other_controls/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/07_aligned_inputs/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/07_aligned_inputs/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/11_submit_button/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/11_submit_button/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/final_version_for_chapter/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/final_version_for_chapter/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/02_FacebookLikeBox_Resized/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/02_FacebookLikeBox_Resized/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter8/website_files/04_TwitterProfile/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/04_TwitterProfile/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/05_TwitterProfileAndFollow/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/05_TwitterProfileAndFollow/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/03headerAndNavStyled/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/03headerAndNavStyled/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/06asideAdded/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/07figAndFigCaption/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/01roundedCorners/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/01roundedCorners/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/01roundedCorners/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter10/website_files/02_CSS3/01roundedCorners/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/03boxShadow/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/03boxShadow/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/05textShadow/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/06googleWebFonts/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/06googleWebFonts/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/06googleWebFonts/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter10/website_files/02_CSS3/06googleWebFonts/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter10/website_files/final_version_for_chapter/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/01_AddDefaultFormValues/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/01_AddDefaultFormValues/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter11/website_files/01_AddDefaultFormValues/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/02_GalleryCaptionHoverEffect/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/02_GalleryCaptionHoverEffect/divers-circle.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter11/website_files/final_version_for_chapter/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter12/website_files/01_FirebugExamples/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter12/website_files/01_FirebugExamples/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter12/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter12/website_files/final_version_for_chapter/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter13/website_files/01_statcounter_code/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/01_statcounter_code/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/04_rollyo_search_jquery/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter13/website_files/04_rollyo_search_jquery/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter13/website_files/final_version_for_chapter/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter2/website_files/06_adding_structure_with_divs/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter2/website_files/06_adding_structure_with_divs/divers-circle.jpg -------------------------------------------------------------------------------- /chapter5/website_files/09_navigation_background/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/09_navigation_background/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter5/website_files/11_heading_background/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/11_heading_background/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/final_version_for_chapter/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/final_version_for_chapter/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter5/website_files/final_version_for_chapter/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/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/HEAD/chapter6/website_files/01_events_first_draft/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/03_events_table_borders/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/03_events_table_borders/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/04_styled_table_header/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/04_styled_table_header/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/05_stylish_table_cells/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/05_stylish_table_cells/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/final_version_for_chapter/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/final_version_for_chapter/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter6/website_files/final_version_for_chapter/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter7/website_files/02_form_and_fieldset/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/02_form_and_fieldset/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/03_temporary_form_content/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/03_temporary_form_content/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/04_styled_fieldset/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/04_styled_fieldset/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/08_region_dropdown/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/08_region_dropdown/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter7/website_files/10_radios_and_checkboxes/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/10_radios_and_checkboxes/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/final_version_for_chapter/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/final_version_for_chapter/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/final_version_for_chapter/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter7/website_files/final_version_for_chapter/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter8/website_files/01_FacebookLikeBox/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/01_FacebookLikeBox/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/02_FacebookLikeBox_Resized/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter8/website_files/02_FacebookLikeBox_Resized/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/02_FacebookLikeBox_Resized/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/05_TwitterProfileAndFollow/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/05_TwitterProfileAndFollow/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/05_TwitterProfileAndFollow/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/05_TwitterProfileAndFollow/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/01addingHTML5shim/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter10/website_files/01_HTML5/01addingHTML5shim/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/06asideAdded/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/06asideAdded/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/07figAndFigCaption/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/01roundedCorners/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadow/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/05textShadow/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/05textShadowSubtle/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/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/HEAD/chapter10/website_files/02_CSS3/06googleWebFonts/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter10/website_files/final_version_for_chapter/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/01_AddDefaultFormValues/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter11/website_files/final_version_for_chapter/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter11/website_files/final_version_for_chapter/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter12/website_files/final_version_for_chapter/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/04_rollyo_search_jquery/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter13/website_files/final_version_for_chapter/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter5/examples/03_background_images/images/company-logo-transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/examples/03_background_images/images/company-logo-transparent.gif -------------------------------------------------------------------------------- /chapter5/website_files/06_alternate_styled_caption/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/06_alternate_styled_caption/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter5/website_files/10_tagline_background/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter5/website_files/10_tagline_background/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter5/website_files/11_heading_background/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter5/website_files/final_version_for_chapter/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter6/website_files/01_events_first_draft/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/01_events_first_draft/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter6/website_files/04_styled_table_header/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/04_styled_table_header/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter6/website_files/05_stylish_table_cells/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/05_stylish_table_cells/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter6/website_files/final_version_for_chapter/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter6/website_files/final_version_for_chapter/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/03_temporary_form_content/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/03_temporary_form_content/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/10_radios_and_checkboxes/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/10_radios_and_checkboxes/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter7/website_files/final_version_for_chapter/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter7/website_files/final_version_for_chapter/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter8/website_files/02_FacebookLikeBox_Resized/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter8/website_files/02_FacebookLikeBox_Resized/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter8/website_files/03_FacebookLikeBox_ResizedHeight/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/03_FacebookLikeBox_ResizedHeight/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter8/website_files/03_FacebookLikeBox_ResizedHeight/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/03_FacebookLikeBox_ResizedHeight/divers-circle.jpg -------------------------------------------------------------------------------- /chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/03_FacebookLikeBox_ResizedHeight/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter8/website_files/05_TwitterProfileAndFollow/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter8/website_files/05_TwitterProfileAndFollow/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/chapter8/website_files/05_TwitterProfileAndFollow/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/01addingHTML5shim/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/01addingHTML5shim/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/02replacingHeaderAndNav/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/03headerAndNavStyled/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/fish-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/fish-face.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter10/website_files/01_HTML5/03headerAndNavStyled/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/04headerAndNavStyledIE/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/anemone.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/floating.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/05leftNavTopMarginFixed/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/01_HTML5/07figAndFigCaption/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter10/website_files/01_HTML5/07figAndFigCaption/gallery/what-a-star.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/01roundedCorners/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/01roundedCorners/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/backgrounds/td.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/backgrounds/td.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/04boxShadowMultipleShadows/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/05textShadowSubtle/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/05textShadowSubtle/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/06googleWebFonts/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/06googleWebFonts/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/divers-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/divers-circle.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/reef1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/reef1.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/reef2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/07googleWebFontsLuckiestGuy/gallery/reef2.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/anemone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/floating.jpg -------------------------------------------------------------------------------- /chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/02_CSS3/08googleWebFontsTooMany/gallery/jellyfish.jpg -------------------------------------------------------------------------------- /chapter10/website_files/final_version_for_chapter/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter10/website_files/final_version_for_chapter/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter11/website_files/01_AddDefaultFormValues/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/01_AddDefaultFormValues/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/backgrounds/nav-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/02_GalleryCaptionHoverEffect/backgrounds/nav-bg.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/turtle-bite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/turtle-bite.jpg -------------------------------------------------------------------------------- /chapter11/website_files/02_GalleryCaptionHoverEffect/gallery/turtle-face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/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/HEAD/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/HEAD/chapter11/website_files/final_version_for_chapter/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter12/website_files/final_version_for_chapter/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter12/website_files/final_version_for_chapter/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter13/website_files/04_rollyo_search_jquery/backgrounds/tagline-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/04_rollyo_search_jquery/backgrounds/tagline-fade.jpg -------------------------------------------------------------------------------- /chapter13/website_files/final_version_for_chapter/backgrounds/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbooks/HTML3/HEAD/chapter13/website_files/final_version_for_chapter/backgrounds/header-bg.jpg -------------------------------------------------------------------------------- /chapter2/website_files/01_skeleton/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |