HTML: Title Heading is defined by tags such as <h1> - <h6>. <h1> defines the largest heading. <h6> defines the smallest heading. Tip: Browsers will automatically add blank lines before and after the title. h1 is used as the main heading (the most important), followed by h2 (the next most important), followed by h3, and so on. Tip: By default, HTML automatically adds an extra blank line before and after block-level elements, such as paragraphs and headings. The align attribute of <h1> - <h6> is deprecated in HTML4/5. Please use CSS instead. Title supports event attributes and global attributes Set title alignment: CSS syntax: <h1 style="text-align:right"> Method 1: XML/HTML CodeCopy content to clipboard
Method 2: XML/HTML CodeCopy content to clipboard
HTML: Horizontal Rule The <hr /> tag creates a horizontal rule in an HTML page. The hr element can be used to separate content. <p>This is a paragraph</p> <p>This is a paragraph</p>Tip: Using horizontal rules (<hr> tags) to separate sections in an article is one way (but not the only way). HTML5 does not support the <hr> align attribute. Please use CSS instead. The align attribute of the <hr> element is deprecated in HTML 4.01. The align attribute specifies the alignment of the horizontal line. Note: The align attribute has no effect unless the width attribute is set to less than 100%. CSS syntax (IE and Opera): <hr style="text-align:right"> CSS syntax (Firefox, Chrome, and Safari): <hr style="margin-right:0"> CSS syntax (cross-browser): <hr style="text-align:right;margin-right:0">
XML/HTML CodeCopy content to clipboard
HTML: Comments Comments can be inserted into HTML code to improve its readability and make the code easier to understand. Browsers ignore comments and do not display them. The comment reads: <!-- This is a comment --> Note: The two forward slashes (//) at the end of the command line are JavaScript comment symbols. This ensures that JavaScript does not execute within the --> tag. Besides their very obvious role in source documents, many Web servers also make use of comments to implement features specific to document server software. These servers can scan documents, find specific character sequences in traditional HTML/XHTML comments, and then take appropriate actions based on the commands embedded in the comments. These actions may be as simple as including text from other files (so-called server-inside includes), or as complex as executing other commands to dynamically generate the content of the document. The above HTML basic summary recommendation (title) is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. Original URL: http://www.cnblogs.com/sxtywjx/p/5665044.html |
<<: A detailed introduction to the netstat command in Linux
>>: CSS implements various loading effects with parsing process
Layout part: <div id="slider"> &l...
--When connecting to the database, the matching r...
As a front-end Web engineer, you must have encoun...
Table of contents Overview 1. Global Registration...
Solution: Just set the link's target attribute...
Table of contents 1. Global level 2. Database lev...
When checking the slow query, I found that the ti...
Table of contents 1. Global beforeEach 1. Global ...
The role of init_connect init_connect is usually ...
Table of contents 1. JavaScript issues 2. Advanta...
As a powerful editor with rich options, Vim is lo...
transform and translate Transform refers to trans...
In this article, we will look at how to develop a...
Table of contents 1. Customize plan tasks 2. Sync...
Preface This article will share some docker-compo...