gitextract_r4cy_bxf/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ └── custom.md ├── .gitignore ├── FAQ.md ├── README.md ├── assignments/ │ ├── assignment1/ │ │ └── Assignment-1.md │ ├── assignment2/ │ │ └── Assignment-2.md │ ├── assignment3/ │ │ └── Assignment-3.md │ ├── assignment4/ │ │ ├── Assignment-4.md │ │ └── assignment4-solution-starter/ │ │ ├── README-FIRST.txt │ │ ├── easier/ │ │ │ ├── SpeakGoodBye.js │ │ │ ├── SpeakHello.js │ │ │ ├── index.html │ │ │ └── script.js │ │ └── harder/ │ │ ├── SpeakGoodBye.js │ │ ├── SpeakHello.js │ │ ├── index.html │ │ └── script.js │ └── assignment5/ │ ├── Assignment-5.md │ └── assignment5-solution-starter/ │ ├── css/ │ │ ├── bootstrap.css │ │ └── styles.css │ ├── index.html │ ├── js/ │ │ ├── ajax-utils.js │ │ ├── bootstrap.js │ │ ├── npm.js │ │ └── script.js │ └── snippets/ │ ├── categories-title-snippet.html │ ├── category-snippet.html │ ├── home-snippet.html │ ├── menu-item.html │ └── menu-items-title.html ├── examples/ │ ├── Lecture01/ │ │ ├── structure-only-after.html │ │ └── structure-only-before.html │ ├── Lecture04/ │ │ ├── doc-structure-after.html │ │ └── doc-structure-before.html │ ├── Lecture05/ │ │ └── div-and-span.html │ ├── Lecture06/ │ │ ├── headings.html │ │ └── semantic-elements.html │ ├── Lecture07/ │ │ ├── ordered-lists-after.html │ │ ├── ordered-lists-before.html │ │ ├── unordered-lists-after.html │ │ └── unordered-lists-before.html │ ├── Lecture08/ │ │ ├── html-entities-after.html │ │ └── html-entities-before.html │ ├── Lecture09/ │ │ ├── links-external.html │ │ ├── links-internal.html │ │ ├── links-same-page.html │ │ └── same-directory.html │ ├── Lecture10/ │ │ └── images.html │ ├── Lecture12/ │ │ └── css-syntax.html │ ├── Lecture13/ │ │ ├── simple-selectors-after.html │ │ └── simple-selectors-before.html │ ├── Lecture14/ │ │ ├── child-selector-after.html │ │ ├── child-selector-before.html │ │ ├── descendant-selector-after.html │ │ ├── descendant-selector-before.html │ │ ├── element-with-class-after.html │ │ └── element-with-class-before.html │ ├── Lecture15/ │ │ ├── pseudo-selectors-after.html │ │ └── pseudo-selectors-before.html │ ├── Lecture16/ │ │ ├── style-placement.html │ │ └── style.css │ ├── Lecture17/ │ │ ├── external.css │ │ ├── inheritance.html │ │ ├── origin.html │ │ └── specificity.html │ ├── Lecture18/ │ │ ├── font-size-after.html │ │ ├── font-size-before.html │ │ ├── styling-text-after.html │ │ └── styling-text-before.html │ ├── Lecture19/ │ │ ├── box-model-after.html │ │ └── box-model-before.html │ ├── Lecture20/ │ │ ├── background-after.html │ │ └── background-before.html │ ├── Lecture21/ │ │ ├── floating-after.html │ │ ├── floating-before.html │ │ ├── two-column-after.html │ │ └── two-column-before.html │ ├── Lecture22/ │ │ ├── positioning-after.html │ │ └── positioning-before.html │ ├── Lecture23/ │ │ ├── media-queries-after.html │ │ └── media-queries-before.html │ ├── Lecture24/ │ │ ├── responsive-after.html │ │ └── responsive-before.html │ ├── Lecture25/ │ │ ├── css/ │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap.css │ │ │ └── styles.css │ │ ├── index.html │ │ └── js/ │ │ ├── bootstrap.js │ │ ├── npm.js │ │ └── script.js │ ├── Lecture26/ │ │ ├── css/ │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap.css │ │ │ └── styles.css │ │ ├── grid-after.html │ │ ├── grid-before.html │ │ └── js/ │ │ ├── bootstrap.js │ │ ├── npm.js │ │ └── script.js │ ├── Lecture27/ │ │ └── README.txt │ ├── Lecture28/ │ │ └── README.txt │ ├── Lecture29/ │ │ ├── after/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── styles.css │ │ │ ├── index.html │ │ │ └── js/ │ │ │ ├── bootstrap.js │ │ │ ├── npm.js │ │ │ └── script.js │ │ └── before/ │ │ ├── css/ │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap.css │ │ │ └── styles.css │ │ ├── index.html │ │ └── js/ │ │ ├── bootstrap.js │ │ ├── npm.js │ │ └── script.js │ ├── Lecture30/ │ │ ├── after/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── styles.css │ │ │ ├── index.html │ │ │ └── js/ │ │ │ ├── bootstrap.js │ │ │ ├── npm.js │ │ │ └── script.js │ │ └── before/ │ │ ├── css/ │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap.css │ │ │ └── styles.css │ │ ├── index.html │ │ └── js/ │ │ ├── bootstrap.js │ │ ├── npm.js │ │ └── script.js │ ├── Lecture31/ │ │ ├── after/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── styles.css │ │ │ ├── index.html │ │ │ └── js/ │ │ │ ├── bootstrap.js │ │ │ ├── npm.js │ │ │ └── script.js │ │ └── before/ │ │ ├── css/ │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap.css │ │ │ └── styles.css │ │ ├── index.html │ │ └── js/ │ │ ├── bootstrap.js │ │ ├── npm.js │ │ └── script.js │ ├── Lecture32/ │ │ ├── after/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── styles.css │ │ │ ├── index.html │ │ │ └── js/ │ │ │ ├── bootstrap.js │ │ │ ├── npm.js │ │ │ └── script.js │ │ └── before/ │ │ ├── css/ │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap.css │ │ │ └── styles.css │ │ ├── index.html │ │ └── js/ │ │ ├── bootstrap.js │ │ ├── npm.js │ │ └── script.js │ ├── Lecture33/ │ │ ├── after/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── styles.css │ │ │ ├── index.html │ │ │ └── js/ │ │ │ ├── bootstrap.js │ │ │ ├── npm.js │ │ │ └── script.js │ │ └── before/ │ │ ├── css/ │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap.css │ │ │ └── styles.css │ │ ├── index.html │ │ └── js/ │ │ ├── bootstrap.js │ │ ├── npm.js │ │ └── script.js │ ├── Lecture34/ │ │ ├── after/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── styles.css │ │ │ ├── index.html │ │ │ └── js/ │ │ │ ├── bootstrap.js │ │ │ ├── npm.js │ │ │ └── script.js │ │ └── before/ │ │ ├── css/ │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap.css │ │ │ └── styles.css │ │ ├── index.html │ │ └── js/ │ │ ├── bootstrap.js │ │ ├── npm.js │ │ └── script.js │ ├── Lecture35/ │ │ ├── after/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap.css │ │ │ │ └── styles.css │ │ │ ├── index.html │ │ │ └── js/ │ │ │ ├── bootstrap.js │ │ │ ├── npm.js │ │ │ └── script.js │ │ └── before/ │ │ ├── css/ │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap.css │ │ │ └── styles.css │ │ ├── index.html │ │ └── js/ │ │ ├── bootstrap.js │ │ ├── npm.js │ │ └── script.js │ ├── Lecture36/ │ │ ├── after/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap.css │ │ │ │ └── styles.css │ │ │ ├── index.html │ │ │ └── js/ │ │ │ ├── bootstrap.js │ │ │ ├── npm.js │ │ │ └── script.js │ │ └── before/ │ │ ├── css/ │ │ │ ├── bootstrap.css │ │ │ └── styles.css │ │ ├── index.html │ │ └── js/ │ │ ├── bootstrap.js │ │ ├── npm.js │ │ └── script.js │ ├── Lecture37/ │ │ ├── after/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap.css │ │ │ │ └── styles.css │ │ │ ├── index.html │ │ │ ├── js/ │ │ │ │ ├── bootstrap.js │ │ │ │ ├── npm.js │ │ │ │ └── script.js │ │ │ └── menu-categories.html │ │ └── before/ │ │ ├── css/ │ │ │ ├── bootstrap.css │ │ │ └── styles.css │ │ ├── index.html │ │ └── js/ │ │ ├── bootstrap.js │ │ ├── npm.js │ │ └── script.js │ ├── Lecture38/ │ │ ├── after/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap.css │ │ │ │ └── styles.css │ │ │ ├── index.html │ │ │ ├── js/ │ │ │ │ ├── bootstrap.js │ │ │ │ ├── npm.js │ │ │ │ └── script.js │ │ │ ├── menu-categories.html │ │ │ └── single-category.html │ │ └── before/ │ │ ├── css/ │ │ │ ├── bootstrap.css │ │ │ └── styles.css │ │ ├── index.html │ │ ├── js/ │ │ │ ├── bootstrap.js │ │ │ ├── npm.js │ │ │ └── script.js │ │ └── menu-categories.html │ ├── Lecture39/ │ │ ├── after/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap.css │ │ │ │ └── styles.css │ │ │ ├── index.html │ │ │ ├── js/ │ │ │ │ ├── bootstrap.js │ │ │ │ ├── npm.js │ │ │ │ └── script.js │ │ │ ├── menu-categories.html │ │ │ └── single-category.html │ │ └── before/ │ │ ├── css/ │ │ │ ├── bootstrap.css │ │ │ └── styles.css │ │ ├── index.html │ │ ├── js/ │ │ │ ├── bootstrap.js │ │ │ ├── npm.js │ │ │ └── script.js │ │ ├── menu-categories.html │ │ └── single-category.html │ ├── Lecture40/ │ │ ├── index.html │ │ └── js/ │ │ └── script.js │ ├── Lecture41/ │ │ ├── index.html │ │ └── js/ │ │ └── script.js │ ├── Lecture42/ │ │ ├── index.html │ │ └── js/ │ │ └── script.js │ ├── Lecture43/ │ │ ├── index.html │ │ └── js/ │ │ └── script.js │ ├── Lecture44/ │ │ ├── index.html │ │ └── js/ │ │ └── script.js │ ├── Lecture45/ │ │ ├── index.html │ │ └── js/ │ │ └── script.js │ ├── Lecture46/ │ │ ├── index.html │ │ └── js/ │ │ └── script.js │ ├── Lecture47/ │ │ ├── index.html │ │ └── js/ │ │ └── script.js │ ├── Lecture48/ │ │ ├── index.html │ │ └── js/ │ │ └── script.js │ ├── Lecture49/ │ │ ├── index.html │ │ └── js/ │ │ └── script.js │ ├── Lecture50/ │ │ ├── index.html │ │ └── js/ │ │ └── script.js │ ├── Lecture51/ │ │ ├── index.html │ │ └── js/ │ │ └── script.js │ ├── Lecture52/ │ │ ├── index.html │ │ └── js/ │ │ ├── app.js │ │ ├── script1.js │ │ └── script2.js │ ├── Lecture53/ │ │ ├── index.html │ │ └── js/ │ │ └── script.js │ ├── Lecture54/ │ │ ├── index.html │ │ └── js/ │ │ └── script.js │ ├── Lecture55/ │ │ ├── index.html │ │ └── js/ │ │ └── script.js │ ├── Lecture56/ │ │ └── README.txt │ ├── Lecture57/ │ │ ├── data/ │ │ │ └── name.txt │ │ ├── index.html │ │ └── js/ │ │ ├── ajax-utils.js │ │ └── script.js │ ├── Lecture58/ │ │ ├── data/ │ │ │ └── name.json │ │ ├── index.html │ │ └── js/ │ │ ├── ajax-utils.js │ │ └── script.js │ ├── Lecture59/ │ │ ├── after/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap.css │ │ │ │ └── styles.css │ │ │ ├── index.html │ │ │ ├── js/ │ │ │ │ ├── bootstrap.js │ │ │ │ ├── npm.js │ │ │ │ └── script.js │ │ │ ├── menu-categories.html │ │ │ └── single-category.html │ │ └── before/ │ │ ├── css/ │ │ │ ├── bootstrap.css │ │ │ └── styles.css │ │ ├── index.html │ │ ├── js/ │ │ │ ├── bootstrap.js │ │ │ ├── npm.js │ │ │ └── script.js │ │ ├── menu-categories.html │ │ └── single-category.html │ ├── Lecture60/ │ │ ├── after/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap.css │ │ │ │ └── styles.css │ │ │ ├── index.html │ │ │ ├── js/ │ │ │ │ ├── ajax-utils.js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── npm.js │ │ │ │ └── script.js │ │ │ └── snippets/ │ │ │ ├── categories-title-snippet.html │ │ │ ├── category-snippet.html │ │ │ ├── home-snippet.html │ │ │ ├── menu-item.html │ │ │ └── menu-items-title.html │ │ └── before/ │ │ ├── css/ │ │ │ ├── bootstrap.css │ │ │ └── styles.css │ │ ├── index.html │ │ ├── js/ │ │ │ ├── bootstrap.js │ │ │ ├── npm.js │ │ │ └── script.js │ │ ├── menu-categories.html │ │ └── single-category.html │ ├── Lecture61/ │ │ ├── after/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap.css │ │ │ │ └── styles.css │ │ │ ├── index.html │ │ │ ├── js/ │ │ │ │ ├── ajax-utils.js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── npm.js │ │ │ │ └── script.js │ │ │ └── snippets/ │ │ │ ├── categories-title-snippet.html │ │ │ ├── category-snippet.html │ │ │ ├── home-snippet.html │ │ │ ├── menu-item.html │ │ │ └── menu-items-title.html │ │ └── before/ │ │ ├── css/ │ │ │ ├── bootstrap.css │ │ │ └── styles.css │ │ ├── index.html │ │ ├── js/ │ │ │ ├── ajax-utils.js │ │ │ ├── bootstrap.js │ │ │ ├── npm.js │ │ │ └── script.js │ │ └── snippets/ │ │ ├── categories-title-snippet.html │ │ ├── category-snippet.html │ │ ├── home-snippet.html │ │ ├── menu-item.html │ │ └── menu-items-title.html │ ├── Lecture62/ │ │ ├── after/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap.css │ │ │ │ └── styles.css │ │ │ ├── index.html │ │ │ ├── js/ │ │ │ │ ├── ajax-utils.js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── npm.js │ │ │ │ └── script.js │ │ │ └── snippets/ │ │ │ ├── categories-title-snippet.html │ │ │ ├── category-snippet.html │ │ │ ├── home-snippet.html │ │ │ ├── menu-item.html │ │ │ └── menu-items-title.html │ │ └── before/ │ │ ├── css/ │ │ │ ├── bootstrap.css │ │ │ └── styles.css │ │ ├── index.html │ │ ├── js/ │ │ │ ├── ajax-utils.js │ │ │ ├── bootstrap.js │ │ │ ├── npm.js │ │ │ └── script.js │ │ └── snippets/ │ │ ├── categories-title-snippet.html │ │ ├── category-snippet.html │ │ ├── home-snippet.html │ │ ├── menu-item.html │ │ └── menu-items-title.html │ └── Lecture63/ │ ├── after/ │ │ ├── css/ │ │ │ ├── bootstrap.css │ │ │ └── styles.css │ │ ├── index.html │ │ ├── js/ │ │ │ ├── ajax-utils.js │ │ │ ├── bootstrap.js │ │ │ ├── npm.js │ │ │ └── script.js │ │ └── snippets/ │ │ ├── categories-title-snippet.html │ │ ├── category-snippet.html │ │ ├── home-snippet.html │ │ ├── menu-item.html │ │ └── menu-items-title.html │ └── before/ │ ├── css/ │ │ ├── bootstrap.css │ │ └── styles.css │ ├── index.html │ ├── js/ │ │ ├── ajax-utils.js │ │ ├── bootstrap.js │ │ ├── npm.js │ │ └── script.js │ └── snippets/ │ ├── categories-title-snippet.html │ ├── category-snippet.html │ ├── home-snippet.html │ ├── menu-item.html │ └── menu-items-title.html └── pull_request_template.md