Website Programming - HTML & CSS Flashcards
HTML (Hypertext markup language)
HTML is the language for describing the structure of Web pages using Markup
Markup
The elements of the language label pieces of content such as “paragraph,” “list,” “table,” and so on
Cascading Style Sheets (CSS)
CSS is the language for describing the presentation of Web pages, including colors, layout, and fonts
Separate from HTML
Extensible Markup Language (XML)
XML is a simple text-based format for representing structured information: documents, data, configuration, books, transactions, invoices, and much more
Attributes
Attributes give additional information about a tag to a browser
eg: href = hyperlink (anchor) tag
HTML Elements
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>