├── .DS_Store ├── 01. Welcome To The Course ├── How Websites Work.key ├── The Roles Of HTML & CSS.key ├── script - Copy.txt └── script1.txt ├── 02. HTML Basics ├── html5_semantics_solution.zip ├── html5_semantics_start.zip ├── htmlsandbox_finished.zip ├── htmlsandbox_starter.zip └── script.txt ├── 03. CSS Basics ├── csssandbox_finished.zip ├── csssandbox_finished │ ├── 01_basic.html │ ├── 02_selectors.html │ ├── 03_fonts.html │ ├── 04_colors.html │ ├── 05_backgrounds_borders.html │ ├── 06_box_model.html │ ├── 07_float_align.html │ ├── 08_links_buttons.html │ ├── 09_menus.html │ ├── 10_inline_block.html │ ├── 11_position.html │ ├── 12_form_styling.html │ ├── css │ │ └── style.css │ └── img │ │ ├── leaf.png │ │ └── stars.jpg ├── csssandbox_starter.zip ├── form_styling_solution.zip └── form_styling_start.zip ├── 04. Hotel Website ├── hotel_website.zip ├── hotel_website │ ├── about.html │ ├── contact.html │ ├── css │ │ └── style.css │ ├── img │ │ ├── person-1.jpg │ │ ├── person-2.jpg │ │ ├── photo-1.jpg │ │ ├── photo-2.jpg │ │ ├── showcase.jpg │ │ └── test-bg.jpg │ └── index.html └── image_resources.zip ├── 05. Responsiveness & Relative Units ├── csssandbox.zip ├── hotel_website │ └── img │ │ ├── person-1.jpg │ │ └── test-bg.jpg └── hotel_website_responsive.zip ├── 06. Flexbox └── csssandbox_updated.zip ├── 07. Edgeledger Website With Flexbox ├── edgeledger_website.zip ├── edgeledger_website │ ├── css │ │ ├── mobile.css │ │ ├── style.css │ │ └── widescreen.css │ ├── img │ │ ├── logos │ │ │ ├── logo1.png │ │ │ ├── logo2.png │ │ │ ├── logo3.png │ │ │ ├── logo4.png │ │ │ └── logo5.png │ │ ├── people.jpg │ │ └── showcase.jpg │ ├── index.html │ └── js │ │ └── main.js └── image_resources.zip ├── 08. Website Deployment - Shared Host ├── contact.zip ├── edgeledger_website_final.zip └── inmotion_hosting_link.txt ├── 09. More CSS Concepts ├── csssandbox2.zip └── csssandbox2 │ ├── 1_more_selectors.html │ ├── 2_nth-child.html │ ├── 3_before_after.html │ ├── 4_box_shadow.html │ ├── 5_text_shadow.html │ ├── 6_css_variables.html │ ├── 7_keyframes.html │ ├── 8_transitions.html │ └── 9_transform.html ├── 10. Mini Projects With Keyframes, Transitions, etc ├── dropdown.zip ├── dropdown │ ├── index.html │ └── style.css ├── hamburger_overlay_menu.zip ├── hamburger_overlay_menu │ ├── css │ │ ├── menu.css │ │ └── style.css │ ├── img │ │ └── showcase.jpg │ └── index.html ├── knowledge_resume.zip ├── knowledge_resume │ ├── index.html │ ├── main.js │ └── style.css ├── presentation_website.zip └── presentation_website │ ├── index.html │ └── style.css ├── 11. CSS Grid ├── grid_sandbox.zip └── grid_sandbox │ ├── 01_grid_columns.html │ ├── 02_grid_rows.html │ ├── 03_grid_span.html │ ├── 04_autofill_minmax.html │ ├── 05_grid_template_areas.html │ └── 06_grid_media_queries.html ├── 12. NewsGrid Website ├── image_resources.zip └── newsgrid.zip ├── 13. Website Deployment - Netlify (FREE) ├── git _commands.txt └── namecheap_hosting_link.txt ├── 14. Learning Sass └── sass_sandbox_finished.zip ├── 15. Portfolio Website With Sass ├── .DS_Store ├── portfolio_website.zip └── project_resources.zip ├── LICENSE └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/.DS_Store -------------------------------------------------------------------------------- /01. Welcome To The Course/How Websites Work.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/01. Welcome To The Course/How Websites Work.key -------------------------------------------------------------------------------- /01. Welcome To The Course/The Roles Of HTML & CSS.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/01. Welcome To The Course/The Roles Of HTML & CSS.key -------------------------------------------------------------------------------- /01. Welcome To The Course/script - Copy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/01. Welcome To The Course/script - Copy.txt -------------------------------------------------------------------------------- /01. Welcome To The Course/script1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/01. Welcome To The Course/script1.txt -------------------------------------------------------------------------------- /02. HTML Basics/html5_semantics_solution.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/02. HTML Basics/html5_semantics_solution.zip -------------------------------------------------------------------------------- /02. HTML Basics/html5_semantics_start.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/02. HTML Basics/html5_semantics_start.zip -------------------------------------------------------------------------------- /02. HTML Basics/htmlsandbox_finished.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/02. HTML Basics/htmlsandbox_finished.zip -------------------------------------------------------------------------------- /02. HTML Basics/htmlsandbox_starter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/02. HTML Basics/htmlsandbox_starter.zip -------------------------------------------------------------------------------- /02. HTML Basics/script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/02. HTML Basics/script.txt -------------------------------------------------------------------------------- /03. CSS Basics/csssandbox_finished.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/03. CSS Basics/csssandbox_finished.zip -------------------------------------------------------------------------------- /03. CSS Basics/csssandbox_finished/01_basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/03. CSS Basics/csssandbox_finished/01_basic.html -------------------------------------------------------------------------------- /03. CSS Basics/csssandbox_finished/02_selectors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/03. CSS Basics/csssandbox_finished/02_selectors.html -------------------------------------------------------------------------------- /03. CSS Basics/csssandbox_finished/03_fonts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/03. CSS Basics/csssandbox_finished/03_fonts.html -------------------------------------------------------------------------------- /03. CSS Basics/csssandbox_finished/04_colors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/03. CSS Basics/csssandbox_finished/04_colors.html -------------------------------------------------------------------------------- /03. CSS Basics/csssandbox_finished/05_backgrounds_borders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/03. CSS Basics/csssandbox_finished/05_backgrounds_borders.html -------------------------------------------------------------------------------- /03. CSS Basics/csssandbox_finished/06_box_model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/03. CSS Basics/csssandbox_finished/06_box_model.html -------------------------------------------------------------------------------- /03. CSS Basics/csssandbox_finished/07_float_align.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/03. CSS Basics/csssandbox_finished/07_float_align.html -------------------------------------------------------------------------------- /03. CSS Basics/csssandbox_finished/08_links_buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/03. CSS Basics/csssandbox_finished/08_links_buttons.html -------------------------------------------------------------------------------- /03. CSS Basics/csssandbox_finished/09_menus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/03. CSS Basics/csssandbox_finished/09_menus.html -------------------------------------------------------------------------------- /03. CSS Basics/csssandbox_finished/10_inline_block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/03. CSS Basics/csssandbox_finished/10_inline_block.html -------------------------------------------------------------------------------- /03. CSS Basics/csssandbox_finished/11_position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/03. CSS Basics/csssandbox_finished/11_position.html -------------------------------------------------------------------------------- /03. CSS Basics/csssandbox_finished/12_form_styling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/03. CSS Basics/csssandbox_finished/12_form_styling.html -------------------------------------------------------------------------------- /03. CSS Basics/csssandbox_finished/css/style.css: -------------------------------------------------------------------------------- 1 | h3 { 2 | color: blue; 3 | } -------------------------------------------------------------------------------- /03. CSS Basics/csssandbox_finished/img/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/03. CSS Basics/csssandbox_finished/img/leaf.png -------------------------------------------------------------------------------- /03. CSS Basics/csssandbox_finished/img/stars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/03. CSS Basics/csssandbox_finished/img/stars.jpg -------------------------------------------------------------------------------- /03. CSS Basics/csssandbox_starter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/03. CSS Basics/csssandbox_starter.zip -------------------------------------------------------------------------------- /03. CSS Basics/form_styling_solution.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/03. CSS Basics/form_styling_solution.zip -------------------------------------------------------------------------------- /03. CSS Basics/form_styling_start.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/03. CSS Basics/form_styling_start.zip -------------------------------------------------------------------------------- /04. Hotel Website/hotel_website.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/04. Hotel Website/hotel_website.zip -------------------------------------------------------------------------------- /04. Hotel Website/hotel_website/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/04. Hotel Website/hotel_website/about.html -------------------------------------------------------------------------------- /04. Hotel Website/hotel_website/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/04. Hotel Website/hotel_website/contact.html -------------------------------------------------------------------------------- /04. Hotel Website/hotel_website/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/04. Hotel Website/hotel_website/css/style.css -------------------------------------------------------------------------------- /04. Hotel Website/hotel_website/img/person-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/04. Hotel Website/hotel_website/img/person-1.jpg -------------------------------------------------------------------------------- /04. Hotel Website/hotel_website/img/person-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/04. Hotel Website/hotel_website/img/person-2.jpg -------------------------------------------------------------------------------- /04. Hotel Website/hotel_website/img/photo-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/04. Hotel Website/hotel_website/img/photo-1.jpg -------------------------------------------------------------------------------- /04. Hotel Website/hotel_website/img/photo-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/04. Hotel Website/hotel_website/img/photo-2.jpg -------------------------------------------------------------------------------- /04. Hotel Website/hotel_website/img/showcase.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/04. Hotel Website/hotel_website/img/showcase.jpg -------------------------------------------------------------------------------- /04. Hotel Website/hotel_website/img/test-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/04. Hotel Website/hotel_website/img/test-bg.jpg -------------------------------------------------------------------------------- /04. Hotel Website/hotel_website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/04. Hotel Website/hotel_website/index.html -------------------------------------------------------------------------------- /04. Hotel Website/image_resources.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/04. Hotel Website/image_resources.zip -------------------------------------------------------------------------------- /05. Responsiveness & Relative Units/csssandbox.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/05. Responsiveness & Relative Units/csssandbox.zip -------------------------------------------------------------------------------- /05. Responsiveness & Relative Units/hotel_website/img/person-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/05. Responsiveness & Relative Units/hotel_website/img/person-1.jpg -------------------------------------------------------------------------------- /05. Responsiveness & Relative Units/hotel_website/img/test-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/05. Responsiveness & Relative Units/hotel_website/img/test-bg.jpg -------------------------------------------------------------------------------- /05. Responsiveness & Relative Units/hotel_website_responsive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/05. Responsiveness & Relative Units/hotel_website_responsive.zip -------------------------------------------------------------------------------- /06. Flexbox/csssandbox_updated.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/06. Flexbox/csssandbox_updated.zip -------------------------------------------------------------------------------- /07. Edgeledger Website With Flexbox/edgeledger_website.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/07. Edgeledger Website With Flexbox/edgeledger_website.zip -------------------------------------------------------------------------------- /07. Edgeledger Website With Flexbox/edgeledger_website/css/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/07. Edgeledger Website With Flexbox/edgeledger_website/css/mobile.css -------------------------------------------------------------------------------- /07. Edgeledger Website With Flexbox/edgeledger_website/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/07. Edgeledger Website With Flexbox/edgeledger_website/css/style.css -------------------------------------------------------------------------------- /07. Edgeledger Website With Flexbox/edgeledger_website/css/widescreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/07. Edgeledger Website With Flexbox/edgeledger_website/css/widescreen.css -------------------------------------------------------------------------------- /07. Edgeledger Website With Flexbox/edgeledger_website/img/logos/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/07. Edgeledger Website With Flexbox/edgeledger_website/img/logos/logo1.png -------------------------------------------------------------------------------- /07. Edgeledger Website With Flexbox/edgeledger_website/img/logos/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/07. Edgeledger Website With Flexbox/edgeledger_website/img/logos/logo2.png -------------------------------------------------------------------------------- /07. Edgeledger Website With Flexbox/edgeledger_website/img/logos/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/07. Edgeledger Website With Flexbox/edgeledger_website/img/logos/logo3.png -------------------------------------------------------------------------------- /07. Edgeledger Website With Flexbox/edgeledger_website/img/logos/logo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/07. Edgeledger Website With Flexbox/edgeledger_website/img/logos/logo4.png -------------------------------------------------------------------------------- /07. Edgeledger Website With Flexbox/edgeledger_website/img/logos/logo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/07. Edgeledger Website With Flexbox/edgeledger_website/img/logos/logo5.png -------------------------------------------------------------------------------- /07. Edgeledger Website With Flexbox/edgeledger_website/img/people.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/07. Edgeledger Website With Flexbox/edgeledger_website/img/people.jpg -------------------------------------------------------------------------------- /07. Edgeledger Website With Flexbox/edgeledger_website/img/showcase.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/07. Edgeledger Website With Flexbox/edgeledger_website/img/showcase.jpg -------------------------------------------------------------------------------- /07. Edgeledger Website With Flexbox/edgeledger_website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/07. Edgeledger Website With Flexbox/edgeledger_website/index.html -------------------------------------------------------------------------------- /07. Edgeledger Website With Flexbox/edgeledger_website/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/07. Edgeledger Website With Flexbox/edgeledger_website/js/main.js -------------------------------------------------------------------------------- /07. Edgeledger Website With Flexbox/image_resources.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/07. Edgeledger Website With Flexbox/image_resources.zip -------------------------------------------------------------------------------- /08. Website Deployment - Shared Host/contact.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/08. Website Deployment - Shared Host/contact.zip -------------------------------------------------------------------------------- /08. Website Deployment - Shared Host/edgeledger_website_final.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/08. Website Deployment - Shared Host/edgeledger_website_final.zip -------------------------------------------------------------------------------- /08. Website Deployment - Shared Host/inmotion_hosting_link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/08. Website Deployment - Shared Host/inmotion_hosting_link.txt -------------------------------------------------------------------------------- /09. More CSS Concepts/csssandbox2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/09. More CSS Concepts/csssandbox2.zip -------------------------------------------------------------------------------- /09. More CSS Concepts/csssandbox2/1_more_selectors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/09. More CSS Concepts/csssandbox2/1_more_selectors.html -------------------------------------------------------------------------------- /09. More CSS Concepts/csssandbox2/2_nth-child.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/09. More CSS Concepts/csssandbox2/2_nth-child.html -------------------------------------------------------------------------------- /09. More CSS Concepts/csssandbox2/3_before_after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/09. More CSS Concepts/csssandbox2/3_before_after.html -------------------------------------------------------------------------------- /09. More CSS Concepts/csssandbox2/4_box_shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/09. More CSS Concepts/csssandbox2/4_box_shadow.html -------------------------------------------------------------------------------- /09. More CSS Concepts/csssandbox2/5_text_shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/09. More CSS Concepts/csssandbox2/5_text_shadow.html -------------------------------------------------------------------------------- /09. More CSS Concepts/csssandbox2/6_css_variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/09. More CSS Concepts/csssandbox2/6_css_variables.html -------------------------------------------------------------------------------- /09. More CSS Concepts/csssandbox2/7_keyframes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/09. More CSS Concepts/csssandbox2/7_keyframes.html -------------------------------------------------------------------------------- /09. More CSS Concepts/csssandbox2/8_transitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/09. More CSS Concepts/csssandbox2/8_transitions.html -------------------------------------------------------------------------------- /09. More CSS Concepts/csssandbox2/9_transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/09. More CSS Concepts/csssandbox2/9_transform.html -------------------------------------------------------------------------------- /10. Mini Projects With Keyframes, Transitions, etc/dropdown.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/10. Mini Projects With Keyframes, Transitions, etc/dropdown.zip -------------------------------------------------------------------------------- /10. Mini Projects With Keyframes, Transitions, etc/dropdown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/10. Mini Projects With Keyframes, Transitions, etc/dropdown/index.html -------------------------------------------------------------------------------- /10. Mini Projects With Keyframes, Transitions, etc/dropdown/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/10. Mini Projects With Keyframes, Transitions, etc/dropdown/style.css -------------------------------------------------------------------------------- /10. Mini Projects With Keyframes, Transitions, etc/hamburger_overlay_menu.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/10. Mini Projects With Keyframes, Transitions, etc/hamburger_overlay_menu.zip -------------------------------------------------------------------------------- /10. Mini Projects With Keyframes, Transitions, etc/hamburger_overlay_menu/css/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/10. Mini Projects With Keyframes, Transitions, etc/hamburger_overlay_menu/css/menu.css -------------------------------------------------------------------------------- /10. Mini Projects With Keyframes, Transitions, etc/hamburger_overlay_menu/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/10. Mini Projects With Keyframes, Transitions, etc/hamburger_overlay_menu/css/style.css -------------------------------------------------------------------------------- /10. Mini Projects With Keyframes, Transitions, etc/hamburger_overlay_menu/img/showcase.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/10. Mini Projects With Keyframes, Transitions, etc/hamburger_overlay_menu/img/showcase.jpg -------------------------------------------------------------------------------- /10. Mini Projects With Keyframes, Transitions, etc/hamburger_overlay_menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/10. Mini Projects With Keyframes, Transitions, etc/hamburger_overlay_menu/index.html -------------------------------------------------------------------------------- /10. Mini Projects With Keyframes, Transitions, etc/knowledge_resume.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/10. Mini Projects With Keyframes, Transitions, etc/knowledge_resume.zip -------------------------------------------------------------------------------- /10. Mini Projects With Keyframes, Transitions, etc/knowledge_resume/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/10. Mini Projects With Keyframes, Transitions, etc/knowledge_resume/index.html -------------------------------------------------------------------------------- /10. Mini Projects With Keyframes, Transitions, etc/knowledge_resume/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/10. Mini Projects With Keyframes, Transitions, etc/knowledge_resume/main.js -------------------------------------------------------------------------------- /10. Mini Projects With Keyframes, Transitions, etc/knowledge_resume/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/10. Mini Projects With Keyframes, Transitions, etc/knowledge_resume/style.css -------------------------------------------------------------------------------- /10. Mini Projects With Keyframes, Transitions, etc/presentation_website.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/10. Mini Projects With Keyframes, Transitions, etc/presentation_website.zip -------------------------------------------------------------------------------- /10. Mini Projects With Keyframes, Transitions, etc/presentation_website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/10. Mini Projects With Keyframes, Transitions, etc/presentation_website/index.html -------------------------------------------------------------------------------- /10. Mini Projects With Keyframes, Transitions, etc/presentation_website/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/10. Mini Projects With Keyframes, Transitions, etc/presentation_website/style.css -------------------------------------------------------------------------------- /11. CSS Grid/grid_sandbox.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/11. CSS Grid/grid_sandbox.zip -------------------------------------------------------------------------------- /11. CSS Grid/grid_sandbox/01_grid_columns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/11. CSS Grid/grid_sandbox/01_grid_columns.html -------------------------------------------------------------------------------- /11. CSS Grid/grid_sandbox/02_grid_rows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/11. CSS Grid/grid_sandbox/02_grid_rows.html -------------------------------------------------------------------------------- /11. CSS Grid/grid_sandbox/03_grid_span.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/11. CSS Grid/grid_sandbox/03_grid_span.html -------------------------------------------------------------------------------- /11. CSS Grid/grid_sandbox/04_autofill_minmax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/11. CSS Grid/grid_sandbox/04_autofill_minmax.html -------------------------------------------------------------------------------- /11. CSS Grid/grid_sandbox/05_grid_template_areas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/11. CSS Grid/grid_sandbox/05_grid_template_areas.html -------------------------------------------------------------------------------- /11. CSS Grid/grid_sandbox/06_grid_media_queries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/11. CSS Grid/grid_sandbox/06_grid_media_queries.html -------------------------------------------------------------------------------- /12. NewsGrid Website/image_resources.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/12. NewsGrid Website/image_resources.zip -------------------------------------------------------------------------------- /12. NewsGrid Website/newsgrid.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/12. NewsGrid Website/newsgrid.zip -------------------------------------------------------------------------------- /13. Website Deployment - Netlify (FREE)/git _commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/13. Website Deployment - Netlify (FREE)/git _commands.txt -------------------------------------------------------------------------------- /13. Website Deployment - Netlify (FREE)/namecheap_hosting_link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/13. Website Deployment - Netlify (FREE)/namecheap_hosting_link.txt -------------------------------------------------------------------------------- /14. Learning Sass/sass_sandbox_finished.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/14. Learning Sass/sass_sandbox_finished.zip -------------------------------------------------------------------------------- /15. Portfolio Website With Sass/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/15. Portfolio Website With Sass/.DS_Store -------------------------------------------------------------------------------- /15. Portfolio Website With Sass/portfolio_website.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/15. Portfolio Website With Sass/portfolio_website.zip -------------------------------------------------------------------------------- /15. Portfolio Website With Sass/project_resources.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/15. Portfolio Website With Sass/project_resources.zip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Modern-HTML-and-CSS-from-the-Beginning-Including-Sass/HEAD/README.md --------------------------------------------------------------------------------