Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Windows Tipps & SecurityNighthawk M7 Pro im Test: Flexibler, aber teurer 5G-Router(21.09.2026 um 10:30 Uhr)
Sichere ProgrammierungNeue Gmail-Funktion: So sparst du jetzt Zeit bei Einmalcodes(21.09.2026 um 10:00 Uhr)
Sichere ProgrammierungYour GIF exporter is fine — the container is the problem(21.09.2026 um 10:01 Uhr)
Sichere ProgrammierungCSS, Motion, or GSAP? I Choose by Who Owns the Animation(21.09.2026 um 10:12 Uhr)
Windows Tipps & SecurityNighthawk M7 Pro im Test: Flexibler, aber teurer 5G-Router(21.09.2026 um 10:30 Uhr)
Sichere ProgrammierungNeue Gmail-Funktion: So sparst du jetzt Zeit bei Einmalcodes(21.09.2026 um 10:00 Uhr)
Sichere ProgrammierungYour GIF exporter is fine — the container is the problem(21.09.2026 um 10:01 Uhr)
Sichere ProgrammierungCSS, Motion, or GSAP? I Choose by Who Owns the Animation(21.09.2026 um 10:12 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

Make Your HTML Stand Out with These 11 HTML Tags you be might be missing out

I know I think a lot about HTML, but honestly, I have to say it's an incredible markup language to get accustomed to programming. Even though it doesn't follow many standards like a semicolon at the end, it's still a good intro that…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

I know I think a lot about HTML, but honestly, I have to say it's an incredible markup language to get accustomed to programming. Even though it doesn't follow many standards like a semicolon at the end, it's still a good intro that teaches you about proper syntax and logic.



If you don't know how HTML works, then why are you here? But to put it simply: if we think of a web page like a human being, HTML would be the skeleton that holds everything together. JavaScript would be the organs that make the body work, and CSS would be like the hair, eye color, and the clothes that it's wearing. Elements are HTML's way of telling it what to do.



For example, if I want a heading, I'd put an H1 or an H2 for a subheading. If I wanted a paragraph here, I'd put a p element. If I wanted to combine all of these together, I'd wrap them in a div element, and so on and so forth.



We can see that there are more specific tags than just text. The div tag, for example, creates a sort of box. Other tags, such as strong and em, not only alter the look of the text but also tell the website that they mean something—either they should be emphasized or have bigger importance than the rest of the text.

However, there are some HTML tags that not many people know. Which ones are they? Well, let's find out.






1. The abbr Tag



Also called the abbreviation tag, this is used for when you want to display the meaning of an acronym or abbreviation. To use it, simply wrap the word or acronym in the abbr tag and add a title attribute to it.



HTML tag abbr




  • The <abbr> tag wraps the acronym "WHO."

  • The title attribute specifies what "WHO" stands for: "World Health Organization."

  • When you hover over "WHO" with your cursor, the full meaning ("World Health Organization") is displayed as a tooltip.



The title attribute works with every element, but in this case, type what the acronym or abbreviation stands for. Now, when you hover your cursor over that abbreviation, it shows you the title you set. This is great for buttons or icons for further accessibility. However, be careful with mobile users—they can’t hover over objects.






2. The code Tag



This is extremely useful for transmitting code blocks to users. You could use CSS and a normal p element to make it look like a code block, but why do that when the code tag is made for this exact purpose?



Wrap the string you want to transform in the code tag, and the browser will automatically display it in a monospace font. You can then use CSS to make it prettier.



HTML Code tag






3. The kbd Tag



HTML kbd tag example

Also known as the keyboard tag, this is much like the code tag. Wrap designated keyboard keys in the kbd tag, and the browser will automatically display them in a monospace font. Use CSS to make it look like keyboard buttons.






4. The datalist + option Tags



These are super useful for displaying recommendations or an option menu. It’s easier than you think!



HTML Datalist and Option tag example




  • Create an input element with the input tag where users can write.

  • Add the list attribute to it and give it a name.

  • Create your datalist element with the datalist tag and set its id attribute equal to the list attribute’s name.

  • Inside the datalist, add option tags for recommendations. Use the value attribute for the options.



Now, when users start typing, options pop up based on the letters typed.






5. The dialog Tag



Image description



This tag is a quick and easy way to create a pop-up or modal. Simply create your dialog box with the dialog tag and add content inside it. When you add the open attribute, the dialog box will show. You can use simple JavaScript to control it further.






6. The details + summary Tags



These are perfect for creating native dropdown menus without CSS or JavaScript.



HTML Details and summary tags example




  • Use the details tag to create the container.

  • Add a summary tag inside it for the clickable title.

  • Place any content inside the details tag, and it will toggle visibility when clicked.



This is especially useful for FAQ sections.






7. The time Tag



HTML Time tag example



Though it doesn’t visually do much, this tag allows browsers and search engines to read time values. Wrap time values in the time tag to improve SEO.






8. The ruby + rt + rp Tags



These are used for Ruby notation, commonly in Asian typographies. They display small text above a word or character.



HTML Ruby rt and rp tag example




  • Wrap your text in the ruby tag.

  • Use the rt tag for the smaller text.

  • Add rp tags for browsers that don’t support Ruby notation.






9. The progress Tag



This tag creates a progress bar without CSS.



HTML progress tag example




  • Use the progress tag.

  • Add the max attribute for the maximum value.

  • Use the value attribute for the current value.



The bar adjusts automatically.






10. The meter Tag



Similar to the progress tag, the meter tag represents a scale.



HTML meter tag example




  • Add min, max, and value attributes for the range and current value.

  • Use the low, high, and optimum attributes for thresholds that change the bar's color.






11. The fieldset + legend Tags



These tags create a box to group objects.



HTML Fieldset and legent tags example




  • Use the fieldset tag to create the container.

  • Add a title with the legend tag.
    The legend automatically positions itself in the margins of the box.






Outro



If you learned something new today, let me know by absolutely destroying that like button! If you enjoy this type of content, consider subscribing. I post videos on programming, web development, and my journey of learning how to code.



That’s all for today’s list of hidden HTML tags. Thank you so much for reading to the end, and I’ll see you in the next one. Bye-bye!



Don't forget to follow me on following

LinkedIn | Medium | Bluesky

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Make Your HTML Stand Out with These 11 HTML Tags you be might be missing out

Thematisch verwandte Begriffe: Make, Your, HTML, Stand · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-94030 | A security vulnerability has been detected in SerenityOS up to 3d83e4509…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick