WebDevelopment Flashcards

1
Q

What is HTML?

A

HTML is the standard markup language for creating Web pages.

HTML stands for Hyper Text Markup Language
HTML describes the structure of Web pages using markup
HTML elements are the building blocks of HTML pages
HTML elements are represented by tags
HTML tags label pieces of content such as "heading", "paragraph", "table", and so on
Browsers do not display the HTML tags, but use them to render the content of the page
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is CSS?

A

CSS stands for Cascading Style Sheets

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

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

How do you style HTML with CSS?

A

CSS can be added to HTML elements in 3 ways:

Inline - by using the style attribute in HTML elements
Internal - by using a  element in the  section
External - by using an external CSS file
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is JavaScript?

A

JavaScript is the Programming Language for the Web
JavaScript can update and change both HTML and CSS
JavaScript can calculate, manipulate and validate data

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