How to use tag in html?
Release: 2017-06-19 14:33:59
Original
2980 people have browsed it
The
tag is a very inconspicuous little tag, but this does not mean that it is useless. As the name suggests allows you to semantize the tag in HTML. This compact tag will display the content within the tag in italics by default. Of course, the default style can be easily changed using styles. <address>Glen Stansberry
1234 Web Dev Lane
Anywhere, USA
</address>
Copy after login
can define an address (such as an email address). You should use it to define the address, signature, or authorship of the document. Tags like this are indeed rarely used. The purpose of using these tags is to better semanticizeUsing tags makes HTML more semantic. After standardizing the semantics, it will be more convenient to process these special information. ;On the other hand, readers will know at a glance that this is an address, not something other, and it is more convenient for others to maintain; Another important role is SEO, which improves the weight. Convenient for search. The
tag defines contact information for the author or owner of the document. If the element is inside an element, it represents the contact information for the author or owner of the article. Address literally means "address". In html5, it is used for the contact information of the author or owner of a document or article. Note that what is put here is not the literal "address", but "contact information", which can include various contact information such as the name of the document creator, site link, email address, real address, phone number, etc.
address is usually placed in the footer, sometimes also in the header, depending on the situation.
Tag instance 1: <address>
此文档的作者:<a href="mailto:bill@microsoft.com">Bill Gates</a>
</address>
Copy after login
Tag instance 2: <!DOCTYPE HTML>
<html>
<body>
<address>
Written by www.169it.com<br />
<a href="mailto:us@169it.com">Email us</a><br />
Address: Box 564, Disneyland<br />
Phone: +12 34 56 78
</address>
</body>
</html>
Copy after login
Tag instance 3:
<!doctype html>
<title>html5 address 示例 www.169it.com</title>
<header><h1>html5 address 示例 www.169it.com</h1></header>
<p>这里是主体...</p>
<footer>
作者:www.169it.com
<address>
<ul>
<li>网址:http://www.169it.com</li>
<li>QQ:10000</li>
<li>邮件:web@169it.com</li>
</ul>
</address>
</footer>
Copy after login
The above is the detailed content of How to use
tag in html?. For more information, please follow other related articles on the PHP Chinese website!
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
-
2023-03-15 16:54:01
-
2023-03-15 12:26:02
-
2023-03-14 18:58:01
-
2023-03-14 11:30:01
-
1970-01-01 08:00:00
-
2023-03-16 15:20:01
-
1970-01-01 08:00:00
-
1970-01-01 08:00:00
-
1970-01-01 08:00:00
-
1970-01-01 08:00:00