basic knowledge
css
html
how to
Common elements
100

html stands for

what is HyperText Markup Language

100

CSS stands for 

What is Cascading Style Sheets

100

What is the basic structure of an HTML document?

<!DOCTYPE html><html><head><title></title></head><body></body></html>

100

How do you create a paragraph in HTML?

Using the <p> tag.

100

What tag is used to create a line break?

<br>

200

common text editor used for writing HTML.

what is VS Code, Sublime Text, Atom, Notepad++, TextEdit.

200

The purpose of CSS

What is to style the appearance of HTML elements.

200

What tag is used to define the main content of a page?

The <body> tag.

200

How do you create a heading in HTML?

Using the <h1> to <h6> tags.

200

What tag is used to create a horizontal rule?

<hr>

300

An HTML element

What is the building block of an HTML page, consisting of a start tag, an end tag, and content in between.

300

adding inline styles to an HTML element

What is Using the style attribute within the HTML tag.

300

 tag used to create a link to another page

what is the <a> tag with the href attribute.

300

How do you insert an image into an HTML document?

Using the <img> tag with the src attribute.

300

What tag is used for an inline container?

<span>

400

An HTML attribute?

what is additional information about an HTML element, specified in the start tag.

400

CSS selector

What is A pattern used to select the HTML elements you want to style.

400

What tag is used to create an unordered list?

The <ul> tag.

400

How do you make text bold in HTML?

Using the <b> or <strong> tags.

400

What tag represents a container for content?

<div>

500

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.

500

three common CSS properties.

what is color, font-size, background-color, margin, padding, border.

500

What tag is used to define the title that appears in the browser tab?

The <title> tag within the <head> section.

500

How do you add a comment to your HTML code?

Using `` to end it.

500

What tag is used for an ordered list?

<ol>

M
e
n
u