HTML Flashcards
Who is the client in the client-server model?
a personal computer
What are three attributes of the client?
slower, cheaper, smaller disks
what is an example of a server?
student.cs
what are three attributes of a server machine?
faster, more expensive, bigger disks
what are share points?
folders on the server that are made available over the network
how are network disks created?
by mounting a share point
how are network disks used?
the same as a local disk
what is a network folder?
a subfolder of a network disk
who can access a web server?
any client on the web
what can web servers return?
only files in the server subtree
what is a browser used for?
to request and display web pages
What decides how to render HTML?
the browser
what is a web page?
a file containing text elements, tags and URL
What are 4 things that browsers ignore?
- multiple blanks
- carriage returns
- blank lines
- tags they don’t recognize
describe the case sensitivities of HTML, XHTML, and XML
HTML: case insensitive
XHTML: tags must be lowercase
XML: case-sensitive
What does <head> contain?
information about the page
where can you add keywords for Google searches?
<head>
</head>
what does <title> define?</title>
the name of the page on the tab
what are 3 components of table formatting in HTML?
<tr>: table row
<td>: table cell
<th>: table heading
</th></td></tr>
what command can you use to nest a table?
<colspan = n>
Define the protocol, local name, domain, host domain name, port, and web root folder of the URL: http://jcbserver.cs.uwaterloo.ca:80/cs200/search/search.html
protocol: http
local name: jcbserver
domain: cs.waterloo.ca
host domain name: jcbserver.cs.waterloo.ca
port: 80
web root folder: slash between 0 and c
how do you define a space in a URL?
%20
what is a common gateway interface (CGI)?
a convention for identifying a particular application that form data should be sent to for processing