Module 1.3 - Introduction to HTML Flashcards
What is HTML?
HTML stands for “Hyper Text Markup Language” and it’s the core building block of web development. It’s a markup language that helps to organize content on a web page.
How is HTML written?
HTML is written as text with markup to indicate how the content should be visualized to the end user. An HTML file is saved with a .html file extension.
What is the structure of an HTML file?
An HTML file consists of content and markup. The markup consists of opening and closing tags that help the browser understand how to display the content.
Can you use HTML for styling the page?
No, HTML is not concerned with the presentation of a page, it’s only concerned with the meaning of the content. The presentation of a page will be done using CSS.
What is Codepen?
Codepen is an online tool that helps you experiment with creating web pages. It allows you to easily test and experiment with HTML, CSS, and JavaScript.