The H in HTML stands for: - ANShyper
The HTML layer of a web page is used for _____ and _____. - ANSstructure,content
The CSS layer of a web page is used for _____ and _____. - ANSpresentation,styling
What stores files, waits for requests, and sends resources to the browser? - ANSa web server
What does a browser do? - ANSrequests an HTML page,retrieves a web page,displays a web
page
tells the browser about the page - ANS<head> element
contains what you see on the page - ANS<body> element
tells the browser that the content is HTML - ANS<html> element
HTML uses pairs of tags around your content to tell the browser about the structure of your web
page. - ANStrue
In HTML, matching tags MUST be on the same line. - ANSFalse
An element's closing tag looks exactly like its opening tag - except for an extra "/" after the < -
ANSTrue
The <style> element is used to _____ and is placed inside the _____ element. - ANSenhance
presentation; <head>
An element is composed of what three parts: - ANSopening tag,closing tag,content
Attributes provide a way to specify additional information about an element. - ANSTrue
Web programmers can make up any attribute for a given element, and the browser will support
it. - ANSFalse
Best programming practices suggest surrounding attribute values with double quotes. -
ANSTrue
, Your myPage.html file is in a folder called n241, and your n241 folder contains a folder called
images. Inside your images folder, there is a file called cat.gif. What path would myPage.html
use to access cat.gif? - ANSimages/cat.gif
A web hosting company has a server that "lives" on the web full-time. When you copy your files
to your hosting company's server, they will be available for the world to view. Which server are
we using to host our pages for n241? - ANSIUPUI's Computer Science Tesla server
A domain name is a unique name that is used to locate your web site. - ANSTrue
Most web hosting companies can also register a domain name. - ANSTrue
Registering a domain name for your site is an extra luxury. There are no advantages to having
your own domain name. - ANSFalse
SFTP stands for _____. - ANSSecure File Transfer Protocol
transfer (copy) a file to the server - ANSput
change the active directory - ANScd
create a new folder - ANSmkdir
transfer (copy) a file from the server
get - ANSget
display the current directory - ANSpwd
display the contents of the current directory - ANSdir
The first part of a URL tells the protocol that will be used to retrieve the resource. - ANSTrue
URL stands for _____. - ANSUniform Resource Locators
"used/inventory.html" - ANSrelative path
"/cars/new/inventory.html" - ANSabsolute path
"/n241/about/directions.html" - ANSabsolute path
"images/red.jpg" - ANSrelative path
To link to a page on another web server, you would use the URL for that site as the value of the
"href" attribute.