HTML Beginners CourseHTML Iframes: Embedding Another Page with src and titleAn <iframe> embeds one web page inside another. Every YouTube video you've ever seen sitting inside someone else's blog post is an iframe pointing bac...Scott Weaver•November 9, 2020Read
HTML Beginners CourseHTML Forms: Inputs, Labels, and GET vs POSTA form gathers input from a visitor and sends it somewhere to be processed: a contact message, a login, a checkout, a registration. HTML builds the fo...Scott Weaver•November 7, 2020Read
HTML Beginners CourseHTML Tables: table, tr, td, and th ExplainedA table organizes content into rows and columns, the same way a spreadsheet does. HTML builds one from three tags nested inside each other: <table> fo...Scott Weaver•November 6, 2020Read
HTML Beginners CourseHTML Links and Anchor Tags: href, target, and Jumping to a SectionEvery clickable link in HTML, whether it points to another website, another page on your own site, or a specific spot further down the same page, star...Scott Weaver•November 4, 2020Read
HTML Beginners CourseLinksIf you want to learn how to create links to external sites, links to internal pages or even create a navigation section, this video is for you!Scott Weaver•November 4, 2020Read
HTML Beginners CourseHTML Images: The img Tag, Alt Text, and File Paths ExplainedImages go in with a single tag, <img>, and the only thing that changes based on where the image actually lives is one attribute: src. Point src at a f...Scott Weaver•November 3, 2020Read
HTML Beginners CourseHTML Ordered and Unordered Lists: ul, ol, and li ExplainedHTML gives you two kinds of lists, and the choice between them comes down to one question: does the order matter? A grocery list doesn't care what ord...Scott Weaver•November 1, 2020Read
HTML Beginners CourseHTML Text Tags: Paragraphs, Line Breaks, Bold, and ItalicA word processor formats text with a toolbar. HTML formats text with tags: <p> for a paragraph, <br> for a single line break, and a handful of tags fo...Scott Weaver•October 31, 2020Read
HTML Beginners CourseHTML Headings: How to Use h1 Through h6HTML gives you six heading tags, <h1> through <h6>. <h1> is the top-level title of the page and <h6> is the lowest sub-level. They do two jobs at once...Scott Weaver•October 30, 2020Read
HTML Beginners CourseHTML Paragraphs and SpacingIn this video, we talk about paragraph tags — <p>, break tags — <br> and non-breaking space entities — . We’re just diving into actual elements...Scott Weaver•October 29, 2020Read