DEV Community

Jethro May
Jethro May

Posted on • Originally published at jethromay.com

8 HTML Elements You Might Not Know About

HTML which stands for "Hypertext Markup Language," is used to structure the content of a web page. It consists of a series of elements which enclose different parts of the page content to make them appear or act in a certain way.

As a developer, being able to write high-quality, accessible and semantic HTML is a great skill to have in your toolset.

In this guide, we will cover eight elements that you may not have heard of, or used before and look at examples of how you could use them in your next project.

Abbreviation:

The <abbr> tag defines text which is an abbreviation or an acronym, it also allows for an optional title attribute to provide a full description of the abbreviation or acronym.


<p>This document can be styled with <abbr title="Cascading Style Sheets">CSS</abbr></p>
Enter fullscreen mode Exit fullscreen mode

The <abbr> tag has full browser support. View a detailed list of which browser versions this tag can be used in, here.

Cite:

The <cite> tag defines the reference to a cited creative work, and it must include the title of that work. Examples of where this can be used include the title of a song, book, research paper, website or blog post etc.


<p>
  <cite>Hey Jude</cite> by The Beatles was released in 1968.
</p>
Enter fullscreen mode Exit fullscreen mode

The <cite> tag has full browser support. View a detailed list of which browser versions this tag can be used in, here.

Details:

The <details> element creates a widget which can be opened or closed by the user. The default state of the widget is closed, opening the widget will reveal the hidden content inside of the element.


<details>
  This content is hidden.
</details>
Enter fullscreen mode Exit fullscreen mode

The <details> element is supported in all browsers apart from Internet Explorer. View a detailed list of which browser versions this tag can be used in, here.

Mark:

The <mark> tag will define text which should be marked or highlighted by the browser.


<p>Sometimes you need to <mark>highlight</mark> text.</p>
Enter fullscreen mode Exit fullscreen mode

The <mark> tag has full browser support. View a detailed list of which browser versions this tag can be used in, here.

Output:

The <output> tag specifies the result of a calculation. In the following example, you can select a value between 0 - 100 as well as enter a second number into the second element, outputting the sum of the two numbers.


<form oninput="result.value=parseInt(number.value)+parseInt(range.value)">
  <input type="range" id="range" name="range" value="50" /> +
  <input type="number" id="number" name="number" value="50" /> =
  <output name="result" for="number range">100</output>
</form>
Enter fullscreen mode Exit fullscreen mode

The <output> element is supported in all browsers apart from Internet Explorer. View a detailed list of which browser versions this tag can be used in, here.

Summary:

The <summary> tag defines a heading for the <details> element. The <summary> tag must be the first child element inside the <details> element.


<details>
  <summary>Summary Heading</summary>
  This content is hidden.
</details>
Enter fullscreen mode Exit fullscreen mode

The <summary> tag is supported in all browsers apart from Internet Explorer. View a detailed list of which browser versions this tag can be used in, here.

Time:

The <time> tag represents a time or date value. Optionally, you may include a 'datetime' attribute which will translate the value into a machine-readable format. Using the <time> tag allows for better search engine results.


<p>This post was published on <time datetime="2020-08-03">3 August, 2020</time>.</p>
Enter fullscreen mode Exit fullscreen mode

The <time> tag is supported in all browsers apart from Internet Explorer. View a detailed list of which browser versions this tag can be used in, here.

Word Break Opportunity:

The <wbr> tag tells the browser where the ideal location is to break text when the browser window size changes.


<p>This is a very loooooooooo<wbr>oooo</wbr>oooooooooooong sentence showing us how to use this tag.</p>
Enter fullscreen mode Exit fullscreen mode

The <wbr> tag is supported in all browsers apart from Internet Explorer. View a detailed list of which browser versions this tag can be used in, here.

Conclusion

In this article, we reviewed a variety of different HTML tags that you can use in your projects. There are many other useful HTML tags, all of which seek out to solve specific problems. I hope you have learnt a thing or two and will be able to use these tags in your projects!

Top comments (0)