testout chapter 8 (4)
What does JavaScript do?
Makes web pages interactive.
Which of the following BEST describes a back-end developer?
He or she accesses information from databases and prevents unauthorized access.
To be a proper HTML document, there are a few tags that every web page needs. Put these tags in the proper order.
<html> <head> </head> <body> </body> </html>
Which of the following are the proper HTML tags used to create a numbered list?
<ol> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ol>
Lets the browser know that it should interpret the document as HTML.
<html>
Contains the title of the web page, links to stylesheets, and metadata to help search engines find the page.
<head>
Select the tags you MUST use to have a proper HTML document. (three.)
<head> <html> <body>
How many heading tags are available for heading and subheading when using HTML?
6
You want to have a hyperlink to testout.com on your web page. What is the correct HTML syntax to accomplish this?
<a href="www.testout.com">Link to the TestOut homepage</a>
Contains all the elements that will be presented on the screen.
<body>
Which of the following tags contains all the elements that will be presented on the visual portion of a website?
<body></body>
Which of the following BEST describes a front-end developer?
He or she is concerned with the aesthetics of a website.