HTML 是 Web 的支柱,用于创建网页和 Web 应用程序。虽然您可能已经熟悉许多 HTML 标签,但存在一些较少讨论的标签,可以增强网页的深度。
在这篇博文中,我将向您介绍 7 个可以提升您的 Web 开发技能的 HTML 标签。
让我们开始吧!
1.<abbr>
<abbr> HTML 标记表示短语或较长单词的缩写或首字母缩略词。
此标记通过在用户将鼠标悬停在该标记上时提供说明来帮助提高可访问性和用户理解。
此标记可与 title 属性一起使用,当用户将鼠标悬停在 <abbr> 标记内容上时,title 属性的值。
<p>2.<base>
<abbr title="World Wide Web">WWW</abbr> is a fundamental part of the internet.
</p>
<head>3.<cite>
<base href="https://shefali.dev" target="_blank" />
</head>
<body>
<a href="/blog">Blogs</a>
<a href="/get-in-touch">Contact</a>
</body>
<blockquote>4.<details> <summary>
<p>Life is what happens when you're busy making other plans.</p>
<cite>John Lennon</cite>
</blockquote>
<details>5.<fieldset>和<legend>
<summary>Click to expand</summary>
<p>This content can be expanded or collapsed.</p>
</details>
<form><mark>
<fieldset>
<legend>Personal details</legend>
<label for="firstname">First name:</label>
<input type="text" id="firstname" name="firstname" />
<label for="email">Email:</label>
<input type="email" id="email" name="email" />
<label for="contact">Contact:</label>
<input type="text" id="contact" name="contact" />
<input type="button" value="Submit" />
</fieldset>
</form>
<p>This is a <mark>highlighted text</mark> within a paragraph.</p>7.<optgroup>
<select>
<optgroup label="Fruits">
<option>Apple</option>
<option>Banana</option>
<option>Mango</option>
</optgroup>
<optgroup label="Vegetables">
<option>Tomato</option>
<option>Broccoli</option>
<option>Carrot</option>
</optgroup>
</select>
- 本文标题: HTML 隐藏的宝石:您应该了解的 HTML 标签
- 文章分类:【HTML/CSS】
- 非特殊说明,本文版权归【胡同里的砖头】个人博客 所有,转载请注明出处.