Posts

Showing posts with the label CSS TRICKS

top 10 HTML Unique Tags

  Top 10 time saving HTML Tags you didn’t know about. Here are ten cool HTML tags that you may not have known about: < details >: This tag creates an expandable section of content that users can toggle open and closed by clicking on it.    Example : <details>   <summary>Click to expand</summary>   <p>Hidden content</p> </details>      < datalist >: This tag is used to provide a list of options for an input field, making it easier for users to select from a predetermined set of choices.    Example : <label for="fruits">Choose a fruit:</label> <input list="fruits" id="fruit-input"> <datalist id="fruits">   <option value="Apple">   <option value="Banana">   <option value="Orange">   <option value="Pineapple"> </datalist> < meter >: This tag creates a graphical representati...