What element is used to configure the headings for a web page document or section of a web page document?

Looking for Expert Opinion?

Let us have a look at your work and suggest how to improve it!

Get a Consultant

What tag pair is used to create a new paragraph?

<p> </p>

What tag pair is used to create the largest heading?

<h1> </h1>

Which tag is used to force the browser to display the next text or element on a new line?

<br>

The purpose of the ___________ element is used to configure the main navigation area on a web page.

nav

Choose the true statement below

a. The content that displays in the browser is contained in the head section. b. The content that displays in the browser is contained in the body section. c. Information about the web page is contained in the body section. d. All of the above are true. B is the answer

What type of HTML list will automatically place a number in front of the items?

Ordered list

What type of HTML list will automatically place a bullet pint indicator in front of each item?

unordered list

What type of HTML list would be good to use to display a list of terms and their definitions?

description list

What tag pair contains the items in an ordered or unordered list?

<li> </li>

Choose the tag pairs that are used in a description list.

a. <dt> </dt> b. <dl> </dl> c. <dd> </dd> d. all of the above answer is D

Choose the tag pair configures text to be indented from both the left and right margins.

<blockquote> .. </blockquote>

Choose the special character that is used to indicate a blank space.

&nbsp;

Choose the preferred tag pari to use when emphasizing text that is displayed in italic font style.

<em> …</em>

Choose the preferred tag pair to use when displaying important text in bold font weight.

<strong>…</strong>

Choose the tag pair that is used to link web page documents to each other.

<a> tag

When do you need to use a fully qualified URL in a hyperlink?

when linking to a page on an external web site

Select the function of an e-mail link from the choices below.

a. automatically send you an e-mail message with the visitor’s e-mail address as the reply-to field b. launch the default e-mail application for the visitor’s browser with your e-mail address as the recipient c. display your e-mail address so that the visitor can send you a message later d. link to your mail server B is the answer

Choose the best designed link from below

a<a href="news.html">Click to read our important news!</a> b. Click to read our <a href="news.html">important news!</a> c. <a href="news.html">Important News</a> d. <a href="news.html">Click here to read our important news</a> C is the answer

The text contained between title tags is:

Displayed in the title bar of the browser window

The &lt;meta&gt; tag is coded in the ________ section of a web page document.

header

Which of the following tags does not require a closing tag?

<br>

Which of the following tags should NOT be located in the head section?

<h1>

Which of the following attributes would configure an ordered list to display uppercase letters?

type="A"

The purpose of the ______ element is used to configure the headings for a web page document or section of a web page document.

Header

The purpose of the ________ element is to configure the footer information on a web page document.

footer

The purpose of the ___________ element is to contain the main content of a web page document.

main

The title element configure large, bold text at the beginning of the web page document.

False

Web pages have two sections: a head and a body

True

in Page Structure Tutorial

Headings communicate the organization of the content on the page. Web browsers, plug-ins, and assistive technologies can use them to provide in-page navigation.

Page Contents

Nest headings by their rank (or level). The most important heading has the rank 1 (<h1>), the least important heading rank 6 (<h6>). Headings with an equal or higher rank start a new section, headings with a lower rank start new subsections that are part of the higher ranked section.

Skipping heading ranks can be confusing and should be avoided where possible: Make sure that a <h2> is not followed directly by an <h4>, for example. It is ok to skip ranks when closing subsections, for instance, a <h2> beginning a new section, can follow an <h4> as it closes the previous section.

Exception for fixed page sections

In fixed sections of the page, for example in sidebars, the heading ranks should not change depending on the ranks in the content area. In those cases, consistency across pages is more important.

Organize passages of text

In the following example, headings are used to only organize passages of text on a page, for example the main content:

Example

What element is used to configure the headings for a web page document or section of a web page document?

Headings that reflect the page organization

Headings are useful for labeling page regions. Use aria-labelledby to associate headings with their page region, as described in the label page regions section of this tutorial. If the headings are visible, the regions are easy to identify for all users.

Main heading before navigation

In this first example, the heading with the rank 1 is the first heading in the document. All other headings for structuring the page (Navigation Menu, Sidebar, Footer) are one rank lower, and so is the heading for the main content.

Example

What element is used to configure the headings for a web page document or section of a web page document?

View a complete code example to see headings used like this.

Main heading after navigation

In this second example, the main heading is not the site name but the content heading, which is rank 1. The subheadings in the content are rank 2 as are all the other structural headings.

Example

What element is used to configure the headings for a web page document or section of a web page document?

Back to Top

The HTML <head> element is a container for the following elements: <title>, <style>, <meta>, <link>, <script>, and <base>.

The HTML <head> Element

The <head> element is a container for metadata (data about data) and is placed between the <html> tag and the <body> tag.

HTML metadata is data about the HTML document. Metadata is not displayed.

Metadata typically define the document title, character set, styles, scripts, and other meta information.

The HTML <title> Element

The <title> element defines the title of the document. The title must be text-only, and it is shown in the browser's title bar or in the page's tab.

The <title> element is required in HTML documents!

The content of a page title is very important for search engine optimization (SEO)! The page title is used by search engine algorithms to decide the order when listing pages in search results.

The <title> element:

  • defines a title in the browser toolbar
  • provides a title for the page when it is added to favorites
  • displays a title for the page in search engine-results

So, try to make the title as accurate and meaningful as possible!

A simple HTML document:

<!DOCTYPE html> <html><head>   <title>A Meaningful Page Title</title> </head> <body> The content of the document...... </body>

</html>

Try it Yourself »

The HTML <style> Element

The <style> element is used to define style information for a single HTML page:

<style>   body {background-color: powderblue;}  h1 {color: red;}   p {color: blue;}

</style>

Try it Yourself »

The <link> element defines the relationship between the current document and an external resource.

The <link> tag is most often used to link to external style sheets:

<link rel="stylesheet" href="mystyle.css">

Try it Yourself »

Tip: To learn all about CSS, visit our CSS Tutorial.

The HTML <meta> Element

The <meta> element is typically used to specify the character set, page description, keywords, author of the document, and viewport settings.

The metadata will not be displayed on the page, but is used by browsers (how to display content or reload page), by search engines (keywords), and other web services.

Examples

Define the character set used:

Define keywords for search engines:

<meta name="keywords" content="HTML, CSS, JavaScript">

Define a description of your web page:

<meta name="description" content="Free Web tutorials">

Define the author of a page:

<meta name="author" content="John Doe">

Refresh document every 30 seconds:

<meta http-equiv="refresh" content="30">

Setting the viewport to make your website look good on all devices:

<meta name="viewport" content="width=device-width, initial-scale=1.0">

Example of <meta> tags:

<meta charset="UTF-8"><meta name="description" content="Free Web tutorials"><meta name="keywords" content="HTML, CSS, JavaScript"><meta name="author" content="John Doe">

Try it Yourself »

Setting The Viewport

The viewport is the user's visible area of a web page. It varies with the device - it will be smaller on a mobile phone than on a computer screen.

You should include the following <meta> element in all your web pages:

<meta name="viewport" content="width=device-width, initial-scale=1.0">

This gives the browser instructions on how to control the page's dimensions and scaling.

The width=device-width part sets the width of the page to follow the screen-width of the device (which will vary depending on the device).

The initial-scale=1.0 part sets the initial zoom level when the page is first loaded by the browser.

Here is an example of a web page without the viewport meta tag, and the same web page with the viewport meta tag:

Tip: If you are browsing this page with a phone or a tablet, you can click on the two links below to see the difference.


What element is used to configure the headings for a web page document or section of a web page document?

Without the viewport meta tag

What element is used to configure the headings for a web page document or section of a web page document?

With the viewport meta tag

The HTML <script> Element

The <script> element is used to define client-side JavaScripts.

The following JavaScript writes "Hello JavaScript!" into an HTML element with id="demo":

<script>function myFunction() {   document.getElementById("demo").innerHTML = "Hello JavaScript!"; }

</script>

Try it Yourself »

Tip: To learn all about JavaScript, visit our JavaScript Tutorial.

The HTML <base> Element

The <base> element specifies the base URL and/or target for all relative URLs in a page.

The <base> tag must have either an href or a target attribute present, or both.

There can only be one single <base> element in a document!

Specify a default URL and a default target for all links on a page:

<head><base href="https://www.w3schools.com/" target="_blank"></head> <body><img src="images/stickman.gif" width="24" height="39" alt="Stickman"><a href="tags/tag_base.asp">HTML base Tag</a></body>

Try it Yourself »

Chapter Summary

  • The <head> element is a container for metadata (data about data)
  • The <head> element is placed between the <html> tag and the <body> tag
  • The <title> element is required and it defines the title of the document
  • The <style> element is used to define style information for a single document
  • The <link> tag is most often used to link to external style sheets
  • The <meta> element is typically used to specify the character set, page description, keywords, author of the document, and viewport settings
  • The <script> element is used to define client-side JavaScripts
  • The <base> element specifies the base URL and/or target for all relative URLs in a page

HTML head Elements

Tag Description
<head> Defines information about the document
<title> Defines the title of a document
<base> Defines a default address or a default target for all links on a page
<link> Defines the relationship between a document and an external resource
<meta> Defines metadata about an HTML document
<script> Defines a client-side script
<style> Defines style information for a document