HTML title - HTML title is used to mark the title of a web page, or it can be said to be the name of the web page.
HTML title is used to mark the title of the webpage, it can also be said to be the name of the webpage. For a standard webpage, please use a single title. If you use more than two titles, it will cause problems in the judgment of search engines. Too many unnecessary content strings are inserted in the HTML title tag, otherwise it is easy to confuse the information topics provided by the Internet industry. The HTML title tag may display results like the following picture on the browser. The "Wibibi Web Design Teaching Encyclopedia" is HTML The content of title is different in different browsers.
How to write this? Use the <title></title> tag in your source code to do it.
<title>Jason SEO 優化</title>
The standard HTML title syntax starts with <title> and ends with </title>. The text in the <title> and </title> tags is the title of the webpage. The content can be freely written. If there are many different webpages in the entire website, it is recommended to Each webpage has a unique title name, because multiple repeated title names are likely to cause problems in website management in the future.
HTML title sample reference
<head>
<title>Site title</title>
<head>
<body>
Web content
</body>
</html>
From this example, we can see that the <title></title> tag must be placed between the <head></head> tags, and many other tags can be placed between the <head></head> tags, such as meta tag or It is the popular open id tag, but other tags can be used, only <title></title> is indispensable, otherwise it will become an untitled web page. HTML title not only can simply display a paragraph of text, but also can be made into marquee special effects through JavaScript syntax.
Post a Comment
0 Comments