Web Technologies Flashcards

1
Q

HTML paragraph tag

A

<p>
</p>

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

HTML heading tag

A

<h1>
</h1>

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

HTML tag enclosing the entire code

A

<html>
</html>

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

HTML tag below the head section

A

<body>
</body>

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

HTML section that contains any content that doesn’t appear directly in the main window

A

<head>
</head>

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

HTML image code

A

<img></img>
src stands for source

For text which describes the image:
<img></img>

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

HTML code to specify the size of a picture

A

<img></img>

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

HTML hyperlink code

A

<a>text shown</a>

a stands for anchor

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

HTML ordered list

A

<ol>
<li> first item </li>
<li> second item </li>
</ol>

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

HTML unordered list

A

<ul>
<li> first item </li>
<li> second item </li>
</ul>

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

To create a form in HTML

A

<form>
<input="type" name="searchbox" id="searchbox">
<input="submit" value="search">
</form>

First line creates an answer box, second line creates a submit button

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

HTML divisions

A

<div>
Code
</div>

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

CSS

A

Cascading style sheet

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

HTML

A

Hypertext markup language

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

CSS code styled with the rule-set for the <h2> tag

A

h2 {
color: red;
font-size: 25px;
}

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

CSS ID selector

A

Begins with a #
Name defined by user but cannot start with a number or contain spaces.
Used to target elements that are unique.
Can be applied only once on the same page.

17
Q

CSS class selector

A

Begins with a dot
Name defined by user.
Allows you to apply a CSS rule set to a defined group of elements.
Can be applied multiple times of the same page.

18
Q

PageRank algorithm

A

Counts the number and quality of links to a page to determine a rough estimate of how important the website it is.
Basis of Google’s Web search tools but not the only algorithm used to order search results.