Programming Fundamentals Flashcards

1
Q

What is HTML?

A

HyperText Markup Language

Is the code that is used to structure a web page and it’s content.

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

What is CSS?

A

Cascading Style Sheets

It is used for describing the presentation of a document, written in a markup language such as HTML

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

What is a text editor?

A

?

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

How do you write a simple title and page heading in HTML?

A

The Worlds Greatest Website

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

What is DOCTYPE?

A

DOCTYPE tells the browser what document type to expect

Example:

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

What is the HTML heading tag?

A

<h1> … </h1>

<h2> … </h2>

<h3> … </h3>

<h4> … </h4>

<h5> … </h5>

<h6> … </h6>

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

What is the HTML paragraph tag?

A

<p>…</p>

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

What is the HTML tag for bold text?

A

<strong> … </strong>

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

What is the HTML tag for italics?

A

<em> … </em>

For “emphasis”

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

HTML
How to generate example text?

E.g. lorem ipsum

A

Type out: lorem

Then press tab

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

What are ordered lists? And what is the HTML tag?

A

Tag = <ol>…</ol>

An ordered list is a numbered list

  1. Banana
  2. Apple
  3. Orange

Code example:

<ol>

<li>banana
</li><li>apple
</li><li>orange</li>

</ol>

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

What is an unordered list? What is the HTML tag?

A

Tag = <ul>…</ul>

An unordered list is a non-numbered list

  • Banana
  • Apple
  • Orange

Code example:

<ul>

<li>banana
</li><li>apple
</li><li>orange</li>

</ul>

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

What is the HTML tag for line break?

A

<br></br>

Bonus*
Self closing tag,
doesn’t need to be closed by

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

What is the HTML tag for including an image? Give an example using image source “fruit_bowl.jpeg”

A

<img></img>

  • this is a self closing tag and doesn’t need
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What tag is used to create a link on a webpage using HTML?

A

Using the anchor tag

<a> … </a>

<a>New Page</a>

Here you could have the heading “New page” written as:

<h2>New Page</h2>

Then just wrap this heading text in the anchor tag

<a></a>

     <h2>New Page</h2></a>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly