NEW
Font size
WorksheetsBasic HTML Vocabulary part 1
Total questions: 14
Worksheet time: 7mins
_________ is a declaration. It is not an HTML tag; it is an instruction to the web browser about what version of HTML the page is written in.
<main>
<li>
<!DOCTYPE html>
<title>
________ is required in all HTML documents and it defines the name of the document.
<main>
<li>
<!DOCTYPE html>
<title>
__________ tag defines a list item.
<main>
<li>
<!DOCTYPE html>
<title>
__________ tag content should be unique to the document. It should not contain any content that is repeated across documents such as sidebars, navigation links, copyright information, site logos, and search forms.
<main>
<li>
<!DOCTYPE html>
<title>
___________ tag contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc.
<aside>
<body>
<footer>
<header>
___________ defines some content beside the <main> text of the page. Content should be related to the surrounding information or multimedia of the page.
<aside>
<body>
<footer>
<header>
___________ defines the bottom of a document or section, and should contain information about authorship, copyright, contact information, sitemap, and/or other related documents
<aside>
<body>
<footer>
<header>
___________ represents a container for introductory content or a set of navigational links. It may include one or more heading elements, logos, icons, and/or authorship information.
<aside>
<body>
<footer>
<header>
________________ is a container for all the non visible content, and can include a title for the document, scripts, styles, meta information, and more.
<head>
<html>
<nav>
<ol>
________________ is required in all HTML websites, and it tells the browser that this is an HTML document.
<head>
<html>
<nav>
<ol>
________________ tag defines a set of navigation links.
<head>
<html>
<nav>
<ul>
________________ tag defines a list that can be numerical or alphabetical, but it describes a list in sequence.
<head>
<html>
<nav>
<ol>
________________ tag defines a bulleted list where order is not important.
<head>
<html>
<nav>
<ul>
________ tags are used to define HTML headings, and can be set to different values to determine the level of importance.
<main>
<h1>
<!DOCTYPE html>
<title>
