08 Flashcards

1
Q

What is this html tag?

<html>
</html>

A

Represents the root of an HTML document

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

What is this html tag?

<head>
</head>

A

Contains metadata about the document

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

What is this html tag?

<body>
</body>

A

The content of an html document

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

What is this html tag?

<title>
</title>

A

The documents title that is shown in the browser’s title bar or a page tab

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

What is this html tag?

<h1>, <h2>, <h3>, <h4>
</h4></h3></h2></h1>

A

Section headings

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

What is this html tag?

<p>
</p>

A

represents a paragraph

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

What is this html tag?
<br></br>

A

produces a line break in text

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

What is this html tag?

<hr></hr>

A

makes a line across the doc for seperation

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

What is this html tag?
<u>,<i>,<b></b></i></u>

A

underlined, italisized, bold

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

What is this html tag?

<tr>
</tr>

A

defines a table row

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

What is this html tag?

<td>
</td>

A

defines a cell of a table that contains data

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

What is the extension for HTML?

A

.htm, .html

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

What is this html tag?

<table></table>

A

the constructor for a table

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

an __________ is part of HTML and is a technique used in web page development to embed files, such as documents, video, audio, and images in the same HTML document

A

iframe

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

The ______ provides a means of delivering dynamic web content using executable files or scripts

A

CGI

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

What are the two methods used by CGI and what do they mean?

A

Get: Getting data from a server
Post: sending data

16
Q

A _______ on a web page allows a user to enter data to be processed either by server-side or client-side scripts

A

form

17
Q

______________ specifies an form element

______________ specifies an input field

A

<form>...</form>

<input></input>

18
Q

________ A simple text box to allow a single line of text

A

text

19
Q

_________ a checkbox that can be selected

A

checkbox

20
Q

__________ a group of buttons in which only one can be selected

A

Radio

21
Q

___________ a file select control for uploading a file

A

File

22
Q

__________ A button that tells the browser to act on a form

A

Submit

23
Q

_________ when activated, tells the browser to restore the values to their initial values

A

Reset

24
Q

_________ specifies a multiline text input-field

A

<textarea>...</textarea>

25
Q

What is the order of
import cgi
fieldstorage class
getvalue()?

A

We import the cgi module, we make the fieldstorage class then use the getvalue() method to obtain data from forms