sameem420 / you-dont-know-html

You Don't Know HTML

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

you-dont-know-html

Let's Learn HTML with You Don't Know HTML



Document Refresher

  • This meta tag refreshes document every 30 seconds.
    <meta http-equiv="refresh" content="30"> 


Data TAG

  • Provides both a machine-readable value for data processors & a human-readable value for browsers.
    <ul> 
      <li><data value="10">Mouse</data></li>
      <li><data value="11">Keyboard</data></li>
    </ul> 


Theme Color Changer

  • This meta tag changes the theme color for popular web browsers like chrome.
    <meta name="theme-color" content="#1b1b1b">


< DFN > TAG

  • Represents the defining instance of a term. The instance is often the first use of term in document.
    <p>
        <dfn>HTML</dfn> is a markup language
    </p>


Icon Adder

  • This link tag adds a favicon to your webpage that will be shown in the browser tab.
    <link rel="icon" href="path_of_icon/name_of_icon.ico">


Color Picker

  • Displays a visual color picker when clicked, using a color picker native to the device.
    <input type="color">