Category

HTML Beginners Course

Course for HTML Beginners.

14 posts

HTML Iframes: Embedding Another Page with src and title
HTML Beginners Course

HTML Iframes: Embedding Another Page with src and title

An <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
Read
HTML Forms: Inputs, Labels, and GET vs POST
HTML Beginners Course

HTML Forms: Inputs, Labels, and GET vs POST

A 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
Read
HTML Tables: table, tr, td, and th Explained
HTML Beginners Course

HTML Tables: table, tr, td, and th Explained

A 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
Read
HTML Links and Anchor Tags: href, target, and Jumping to a Section
HTML Beginners Course

HTML Links and Anchor Tags: href, target, and Jumping to a Section

Every 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
Read
Links
HTML Beginners Course

Links

If 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
Read
HTML Images: The img Tag, Alt Text, and File Paths Explained
HTML Beginners Course

HTML Images: The img Tag, Alt Text, and File Paths Explained

Images 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
Read
HTML Ordered and Unordered Lists: ul, ol, and li Explained
HTML Beginners Course

HTML Ordered and Unordered Lists: ul, ol, and li Explained

HTML 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
Read
HTML Text Tags: Paragraphs, Line Breaks, Bold, and Italic
HTML Beginners Course

HTML Text Tags: Paragraphs, Line Breaks, Bold, and Italic

A 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
Read
HTML Headings: How to Use h1 Through h6
HTML Beginners Course

HTML Headings: How to Use h1 Through h6

HTML 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
Read
HTML Paragraphs and Spacing
HTML Beginners Course

HTML Paragraphs and Spacing

In this video, we talk about paragraph tags — <p>, break tags — <br> and non-breaking space entities — &nbsp;. We’re just diving into actual elements...

Scott Weaver
Read