html stands for
what is HyperText Markup Language
CSS stands for
What is Cascading Style Sheets
What is the basic structure of an HTML document?
<!DOCTYPE html><html><head><title></title></head><body></body></html>
How do you create a paragraph in HTML?
Using the <p> tag.
What tag is used to create a line break?
<br>
common text editor used for writing HTML.
what is VS Code, Sublime Text, Atom, Notepad++, TextEdit.
The purpose of CSS
What is to style the appearance of HTML elements.
What tag is used to define the main content of a page?
The <body> tag.
How do you create a heading in HTML?
Using the <h1> to <h6> tags.
What tag is used to create a horizontal rule?
<hr>
An HTML element
What is the building block of an HTML page, consisting of a start tag, an end tag, and content in between.
adding inline styles to an HTML element
What is Using the style attribute within the HTML tag.
tag used to create a link to another page
what is the <a> tag with the href attribute.
How do you insert an image into an HTML document?
Using the <img> tag with the src attribute.
What tag is used for an inline container?
<span>
An HTML attribute?
what is additional information about an HTML element, specified in the start tag.
CSS selector
What is A pattern used to select the HTML elements you want to style.
What tag is used to create an unordered list?
The <ul> tag.
How do you make text bold in HTML?
Using the <b> or <strong> tags.
What tag represents a container for content?
<div>
Difference between <div> and <span>.
what is <div> is a block-level element that takes up the full width available, while <span> is an inline element that only takes up as much width as its content.
three common CSS properties.
what is color, font-size, background-color, margin, padding, border.
What tag is used to define the title that appears in the browser tab?
The <title> tag within the <head> section.
How do you add a comment to your HTML code?
Using `` to end it.
What tag is used for an ordered list?
<ol>