Estimated Time: 30 minutes
<aside> 💡 Welcome to CodeLab's article on HTML. Here, you'll learn the basics of this language that serves as the base layer for all web development.
As always, you can follow along with the source code here.
</aside>
HTML, or Hypertext Markup Language, is the basic language that websites are built with. When you see text, images, or any content on the screen, it's powered by HTML.
A markup language is a language that tells the browser how to display information.
https://www.youtube.com/watch?v=fALDrmrdXlc
Key Takeaways:
<p>My Information</p> or <img /> depending on the tag.https://www.youtube.com/watch?v=j5a6TygkF4k
Key Takeaways:
<head> and <body> .
<p> <h1...h6> <a> <img> <div> tags.
<p> tag is for smaller blocks of text - often referred to as the paragraph block.<h1>...<h6> tags are for larger, shorter blocks of text - aptly named the header blocks.<a> block is for easily embedding hyperlinks into text - often referred to as the anchor tag.<img> tag is for displaying images - it's called the image tag.<div> tag is for grouping similar elements together - while it doesn't have much use now, it's great for targeting a large group of HTML tags with a specific CSS rule or JavaScript function - more on this later.