Top HTML tags that make your work faster

You are currently viewing Top HTML tags that make your work faster
  • Post author:
  • Post comments:0 Comments
  • Post last modified:June 28, 2020
  • Reading time:5 mins read

Greetings! Learning about computer studies & web-technology rises day-by-day. Every single day lot of development done by the community of developers to secure and fastly running the websites. So beginner developers always study the new techniques of code that make coding easier simple and secure. That why I am thinking to share my own experience of my HTML(HyperText Markup Language) If you, not a beginner maybe you know that these HTML tags. Copy the below code try it your own editor what the result show.

let’s start.

Free html contact form | Create A Contact US Form with HTML CSS | Website Contact US Form Design

HTML <base> tag

You can specify the base tag in your head section for your base URL  of your assets or images.

<html>
 <head>
  <base href="http://www.example.com/assets" target="_blank">
 </head>
 <body>
    <img src="img/logo.png">
 </body>
</html>

HTML <dd> tag

You can make simple list of items with description or terms

<dl>
  <dt>Coffee</dt>
  <dd>Hot water</dd>
  <dd>sugar</dd>
  <dt>Tea</dt>
  <dd>Milk</dd>
  <dd>Sugar</dd>
</dl>
Coffee
Hot water
sugar
Tea
Milk
Sugar

HTML <datalist> Tag

HTML datalist make simple autocomplete dropdown. if you have done it in javascript. You make a bunch of code to make like that functionality.

<input list="Continents" placeholder="search…">
<datalist id="Continents">
  <option value="Asia">
  <option value="Europe">
  <option value="North America">
  <option value="Africa">
  <option value="South America">
 <option value="Antarctica">
</datalist>

You can search continents

HTML <fieldset> and <legend> tag

Fieldset and legend group the form elements

<fieldset>
 <legend>Personalia:</legend>
 <label for="fname">First Name:</label>
 <input type="text" id="fname">
 <br>
 <label for="email">Email: </label>
 <br>
 <input type="email" id="email">
</fieldset>

 

Personalia:

I hope you like it. please share it with your friend and social media. thank you

Ayat UR Rehman

I'm a self-taught programmer and professionally studying Accounting and Finance. I love blogging to explore the world. It gives a chance to learn several things from different systems.

Leave a Reply