Website Programming - HTML & CSS Flashcards

1
Q

HTML (Hypertext markup language)

A

HTML is the language for describing the structure of Web pages using Markup

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Markup

A

The elements of the language label pieces of content such as “paragraph,” “list,” “table,” and so on

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Cascading Style Sheets (CSS)

A

CSS is the language for describing the presentation of Web pages, including colors, layout, and fonts

Separate from HTML

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Extensible Markup Language (XML)

A

XML is a simple text-based format for representing structured information: documents, data, configuration, books, transactions, invoices, and much more

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Attributes

A

Attributes give additional information about a tag to a browser

eg: href = hyperlink (anchor) tag

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

HTML Elements

A

Consisted of two pieces: Tags and content

eg:

<p> lorem ipsum </p>

<p> is the tag for a paragraph, and lorem ipsum is the content of the paragraph
</p>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly