- Dev. to/atapas/ 10-U…
- Originally written by Tapas Adhikary
- Translator: The sun is sunny
HTML5 is not new. We have been using some of its features since the original release (January 2008). Later, I took a closer look at the HTML5 feature list. See what I found? So far, I haven’t actually used it!
In this article, I’ve listed ten FEATURES of HTML5 that I haven’t used in the past but now find useful. I also created a working example process and hosted it on Netlify. I hope you found it useful, too.
Click on the demo example: html5-tips.netlify.app/
Great, let’s start with their explanations, and code quickly. You can follow me on Twitter to learn about my future articles and work.
Details the Tag
The < Details > TAB provides on demand details to the user. Use this tag if you want to display content to users on demand. By default, details are off. When opened, it expands and displays its contents.
The
Code
<details>
<summary>Click Here to get the user details</summary>
<table>
<tr>
<th>#</th>
<th>Name</th>
<th>Location</th>
<th>Job</th>
</tr>
<tr>
<td>1</td>
<td>Adam</td>
<td>Huston</td>
<td>UI/UX</td>
</tr>
</table>` `</details>
Copy the code
Results demonstrate
You can start from here to see demo: HTTPS: / / html5-tips.net lify. The app/details/index. The HTML
tip
Use it in the GitHub Readme to display the required details. Hide a lot of text and display it only as needed. Cool, right?
Click to see an example: github.com/atapas/noti…
Content the Editable
Contenteditable is an attribute that can be set on an element to make the contenteditable
Can be used with elements such as DIV, P, UL, etc. You must specify it like this: < element contenteditable = “true | false” >.
Note that if contenteditable does not set an attribute on an element, it inherits the attribute from its parent.
Code
<h2> Shoppping List(Content Editable) </h2>
<ul class="content-editable" contenteditable="true">
<li> 1. Milk </li>
<li> 2. Bread </li>
<li> 3. Honey </li>
</ul>
Copy the code
Results demonstrate
You can see the demo from here: html5-tips.netlify.app/ Content-edi…
tip
You can make a span or div element editable, and you can add any rich content to it using CSS styles. This would be better than using the input box. Give it a try!
Map
The