08 Flashcards
What is this html tag?
<html>
</html>
Represents the root of an HTML document
What is this html tag?
<head>
</head>
Contains metadata about the document
What is this html tag?
<body>
</body>
The content of an html document
What is this html tag?
<title>
</title>
The documents title that is shown in the browser’s title bar or a page tab
What is this html tag?
<h1>, <h2>, <h3>, <h4>
</h4></h3></h2></h1>
Section headings
What is this html tag?
<p>
</p>
represents a paragraph
What is this html tag?
<br></br>
produces a line break in text
What is this html tag?
<hr></hr>
makes a line across the doc for seperation
What is this html tag?
<u>,<i>,<b></b></i></u>
underlined, italisized, bold
What is this html tag?
<tr>
</tr>
defines a table row
What is this html tag?
<td>
</td>
defines a cell of a table that contains data
What is the extension for HTML?
.htm, .html
What is this html tag?
<table></table>
the constructor for a table
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
iframe
The ______ provides a means of delivering dynamic web content using executable files or scripts
CGI
What are the two methods used by CGI and what do they mean?
Get: Getting data from a server
Post: sending data
A _______ on a web page allows a user to enter data to be processed either by server-side or client-side scripts
form
______________ specifies an form element
______________ specifies an input field
<form>...</form>
<input></input>
________ A simple text box to allow a single line of text
text
_________ a checkbox that can be selected
checkbox
__________ a group of buttons in which only one can be selected
Radio
___________ a file select control for uploading a file
File
__________ A button that tells the browser to act on a form
Submit
_________ when activated, tells the browser to restore the values to their initial values
Reset
_________ specifies a multiline text input-field
<textarea>...</textarea>
What is the order of
import cgi
fieldstorage class
getvalue()?
We import the cgi module, we make the fieldstorage class then use the getvalue() method to obtain data from forms