A brief discussion on HTML titles, paragraphs, line breaks, horizontal lines, and special characters

A brief discussion on HTML titles, paragraphs, line breaks, horizontal lines, and special characters

title

XML/HTML CodeCopy content to clipboard
  1. < h1 > First level title </ h1 >   
  2. < h2   align = "alignment " > Secondary title </h2>   

There are three alignment modes: left, center, and right. The default is left.

paragraph

End of paragraph tag'

'Can be omitted, a new paragraph start mark means the end of the previous paragraph

XML/HTML CodeCopy content to clipboard
  1. < p > Paragraph text </ p >   

Line Break

Before the end of this paragraph, <br>break the line

No line break

When a paragraph is very long, the browser will generally automatically wrap it. If you don't want the browser to do this, you can use the <nobr> tag

<nobr>No matter how long this sentence is, the browser is not allowed to wrap it automatically</nobr>

Horizontal Line

Use <hr> to insert a horizontal line in a web page

Insert special symbols

&nbsp;No line break space
&emsp;Full-width space
&ensp;Half-width space
&quot;
&amp;&
&lt;
>
&times;×
&sect;§
&copy;©
&reg;®
&trade™

example

XML/HTML CodeCopy content to clipboard
  1. <!doctype html >   
  2. < html >   
  3.      < head >   
  4.          < meta   http-equiv = "content-type"   content = "text/html; charset=utf-8"   
  5.          < meta   name = "description"   content = "Set page description" >   
  6.          < title > Tag 1 </ title >   
  7.      </ head >   
  8.      < body >   
  9.          < h1 > Title </ h1 >   
  10.              < hr >   
  11.              < nobr > There is no paragraph mark. The next paragraph starts where this paragraph ends. There is no paragraph mark. The next paragraph starts where this paragraph ends. There is no paragraph mark. The next paragraph starts where this paragraph ends. There is no paragraph mark. The next paragraph starts where this paragraph ends. </ nobr >   
  12.              < p   align = "right" > This paragraph is aligned to the right < br > This paragraph is aligned to the right
  13.              < p   align = "center" > This section × is centered
  14.      </ body >     
  15. </ html >   

Output effect:

The above brief discussion on HTML titles, paragraphs, line breaks, horizontal rules, and special characters 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.

<<:  Independent implementation of nginx container configuration file

>>:  10 tips for designing useful, easy-to-use web applications

Recommend

Completely uninstall mysql. Personal test!

Cleanly uninstall MySQL. Personally tested, this ...

How to extract string elements from non-fixed positions in MySQL

Preface Note: The test database version is MySQL ...

Eight rules for effective web forms

If you're collecting information from your us...

Token verification login in Vue project (front-end part)

This article example shares the specific code of ...

Install CentOS 7 on VMware14 Graphic Tutorial

Introduction to CentOS CentOS is an enterprise-cl...

How to set process.env.NODE_ENV production environment mode

Before I start, let me emphasize that process.env...

JavaScript implements large file upload processing

Many times when we process file uploads, such as ...

Learn Hyperlink A Tag

ask: I have styled the hyperlink using CSS, but i...

Steps to solve the MySQL 8.0 time zone problem

Software Version Windows: Windows 10 MySQL: mysql...

How to use dd command in Linux without destroying the disk

Whether you're trying to salvage data from a ...

Flex layout realizes the layout mode of upper and lower fixed and middle sliding

This article mainly introduces the layout method ...

18 Web Usability Principles You Need to Know

You can have the best visual design skills in the...