LIS Test 1
Which of the following is an ending tag for an h1 element?
</h1>
How can you open a link in a new tab/browser window?
<a href = "url" target = "_blank">
What is the correct HTML for creating a hyperlink?
<a href= "http://www.w3schools.com">W3Schools</a>
Because 60% of all Internet access is being done on mobile devices, a web developer needs to be concerned with
Responsive web design
When a browser makes a request for a static web page, the web server
Returns the HTML for the page and the browser renders it
What is the Git command that records file snapshots permanently in version history (caches/staging area)?
git commit- m "[descriptive message]"
How do you create a new local repository?
git init
What is the GIT command to upload all local branch commits to the remote repository?
git push
The <a> element that follows goes to a web page <a href = "books/webdevelopment.html"> HTML5 & CSS Tutorial </a>
in a folder that is subordinate to the current page
A web browser
is a program that runs on a client computer
Which of the following is NOT part of an HTTP URL:
node
HTML is used to define
the structure and contents of a web page
Choose the correct HTML element to define emphasized text
<em>
What is the correct HTML for inserting an image?
<img src= "image.gif"alt = "MyImage">
The <a> element that follows <a href = "update.html"> Update</a>
displays "Update" as a link
This program can be used to see if a computer on the Internet is alive.
Ping
How can you make a numbered list?
<ol>
Choose the correct HTML element to define important text
<strong>
A valid HTML document requires
A head element and a body element within an html element
What character entity is created by the character?
A space
HTML is used to define
All of these (the layout of a webpage, the formatting of a webpage, the structure and contents of a webpage)
When a browser makes a request for a dynamic web page,
An application server processes the request and returns the HTML to the web server
Which of the following should you do to provide accessibility to img elements with useful content?
Code an alt attribute that describes the image
Because all browsers don't adhere to the latest HTML and CSS standards, a web developer needs to be concerned with
Cross-browser compatibility
When you comment out a portion of HTML code, you disable it by
Enclosing it within these characters: !--and-->
CSS is used to?
Format the HTML elements of a web page.
Which of the following is not a guideline for user accessibility?
Make sure that each page will run in all browsers.
Which of the following is NOT a guideline for usability?
Make the pages attractive and appealing
Which of the following is NOT part of an HTTP URL:
Node
The internet consists
Of many wide area networks that are connected to local area networks
If you right-click on a web page and select View Source or view Page Source,
The HTML for the page will be displayed
When you include java script in a web application, the code is run by
The Javascript engine of the web browser
An HTTP response is sent from
The web server to the client
SMTP is a protocol for sending emails over the Internet.
True
T or F? HTML comments start with <!-- and end with -->
True
In HTML, a numbered list is coded with
an ol element that contains li elements
The portion of a web page that displays the most important content should be coded as an HTML5
body element
The img element that follows <p> <img src = "../images/logo.gif"alt = "FSU Logo" ></p>
displays "FSU Logo" if the image can't be found