Home  >  Article  >  Web Front-end  >  How to use

tag in html?

How to use
tag in html?

黄舟
黄舟Original
2017-06-19 14:33:592938browse

The

208700f394e4cf40a7aa505373e0130b208700f394e4cf40a7aa505373e0130b tag is a very inconspicuous little tag, but this does not mean that it is useless. As the name suggests 208700f394e4cf40a7aa505373e0130b 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>

208700f394e4cf40a7aa505373e0130b 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 semanticize

Using 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

208700f394e4cf40a7aa505373e0130b tag defines contact information for the author or owner of the document. If the 208700f394e4cf40a7aa505373e0130b element is inside an 23c3de37f2f9ebcb477c4a90aac6fffd 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.

208700f394e4cf40a7aa505373e0130b Tag instance 1:

<address>
此文档的作者:<a href="mailto:bill@microsoft.com">Bill Gates</a>
</address>

208700f394e4cf40a7aa505373e0130b 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>

208700f394e4cf40a7aa505373e0130b 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>

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:
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