Which character is used to indicate the end tag of an HTML element?
#
<
>
/
Which of the following elements inserts a line break in HTML file?
<break>
<br>
<newline>
<line>
A tag such as <br> is often called ______ because it does not require a closing tag for the element.
break tag
short tag
brief tag
void element
The HTML ________is/are the building blocks of HTML documents
link
<h1>
elements
packets
All HTML elements must be __________
in lowercase
properly nested
short
closed with a tag
Which of the following is a correct way to use comments in HTML?
<comments>This is a line of comments in HTML</comment>
<!--This is a line of comments in HTML-->
<skip>This is a line of comments in HTML</skip>
/*This is a line of comments in HTML*/
HTML elements can have attributes. These attributes are used to __________.
add additional information for the element
override the elements
make an element more readable
identify each element
An inline element is normally displayed without starting a new line
true
false
Which of the following should be used for the most important heading of a Web page?
<header>
<head>
<heading>
Which of the following HTML elements is used to define important text?
<em>
<strong>
<important>
<b>
Which of the following HTML elements is used to define emphasized text?
Which HTML element is used to insert an image?
<img src = "myImage.jpg" alt = "My image">
<img src = "myImage.jpg>My Image</img>
<img>myImage.jpg</img>
<img alt = "My Image">myImage.jpg</img>
Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?
alternate
alt
backup
text
Which of the following HTML element is used to create a hyperlink?
<a>http://www.createspace.com</a>
<a attribute = "http://www.createspace.com">CreateSpace</a>
<a url = "http://www.createspace.com">CreateSpace</a>
<a href = "http://www.createspace.com">CreateSpace</a>
Which HTML element is used to make a numbered list?
<list>
<ol>
<ul>
<number>
Which HTML element is used to make a bulleted list?
Which HTML element is used to display a webpage within the current webpage?
<input>
<newpage>
<insert>
<iframe>
Which of the following HTML elements are used to mark up a table?
<table><tr><td>
<tb><tr><td>
<body><table>
<table><ul><li>
Which of the following HTML code, if you need a few extra space between 2017 and Your name, what can you do? <p>COPYRIGHT ©2017 Your name</p>
Add a few space like this "2017 Your name"
Add a space element like <space>
Add a few in where you want the space
Any of the above works fine
Which HTML element is used to specify a footer for a document or section?
<footer>
<foot>
<endofdocument>
<eod>
Which HTML element is used to specify a navigation for a page?
<navigation>
<nav>
<navigate>
<menu>
Which HTML element is used to specify content aside from the page content?
<side>
<aside>
<sidebar>
Which HTML element is used to specify a header for a document or section?
<section>
<document header>
Which HTML element is used to make a text input field in a form?
<input type = "input">
<input type = "field">
<input type = "text">
<input type = "inputfield">
Which HTML element is used to make a checkbox in a form?
<input type = "checkbox">
<input type = "check">
<input type = "box">
<input type = "select">
Which HTML element is used to make a dropdown list in a form?
<input type = "dropdown">
<input type = "list">
<select>
Which HTML element is used to make a text area in a form?
<input type = "textarea">
<input type = "text_area">
<textarea>
Which attribute in HTML form is used to specify that an input field must be filled out?
checked
placeholder
value
required
Who is making the standard for the Web?
Nobody
The World Wide Web Consortium
Microsoft
Unite Nation
HTML 5 was the result of hard work of W3C from the first day.