HTML Flashcards

1
Q

HTML

A

Hyper Text Markup Language

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

Tag

A

Keyword
Container Tags
One Shot Tags

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

Container Tags

A

… (Start and end)

Most tags

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

One Shot Tags

A

No closing only

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

Basic Code for HTML Webpage

A

.
.
.

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

<!-- Comment-->

A

Not displayed on a webpage browser.

Intended to help the person who reads the code

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

Title

A

Displayed on top of browser

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

Body

A

Displays everything that is on the page

Always only 1 body and 1 head

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

Unordered List

A

<ul>
<li>...</li>
</ul>

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

Ordered list

A

<ol>
<li>..</li>
</ol>

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

Image

A

(left is default)

One shot tag

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

Solid Line

A

<hr></hr>

(one shot tag)
Attributes: color (#RRGGBB Hexa code), alight (center default, right, left), size (thickness), width (of the page in pixels or percent)

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

Special Symbols

A

< (less than)
> (greater than)
≤ (less equal)
≥ (greater equal)

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

Headers

A

h1…h6
no need to us <p>, <b>
attribute align</b>

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

Alignment

A

<p>...</p>

or <div>…</div> - can contain many paragraphs (bigger sections)
attribute: align (c, l, r)

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

Fonts

A


attributes -> color, size, face
Size -> 3 is default (1 smallest, 6 biggest)

17
Q

Website

A

2 or more related webpages that are linked together
should be accessible
has to have an attribute
(default=home page

18
Q

Links in a website

A

Always use relative addressing

19
Q

Level below

A

List the names of the folders until you get to the file.

20
Q

Level Up

A

Use “..” until you get back to the leve of your file

21
Q

Link across

A

Use “..” to go back to common folder and then list the folders until you get to the file

22
Q

Links on the same page

A

Name the place <a></a>

Link to it <a>Go to top</a>

23
Q

Image as a link (clickable image)

A

<a></a>

<img></img>

24
Q

Sequential Pages

A

At least 3 related pages

Previous and Next

25
Q

In the Same folder

A

Just name the name of the file.

26
Q

Font Face

A

Serif (tails on letters) lot of text -> easier to read (dotted lines)
ex: Times New Roman
Sans-Serif -> read quickly (webpage)
ex: Arial, Verdana