csdn style settings

1. Text font, color, size

The basic syntax for setting text font is as follows:

  • Fonts: Common fonts include Song font, Microsoft Yahei, Hei font, Chinese Xingkai, Founder Yao font, Kai font, Youyuan, official script, etc.
  • The font size is Arabic numerals: 1, 2, 3, 4, 5…
  • color: It can be an English color or a hexadecimal code. The specific color code reference is placed at the end.
<font face="字体名称" size=字号 color=颜色或者颜色代码>显示内容</font>

<font face="宋体" size=1 color=red>这是宋体 字体1 red(红色)</font>
<font face="微软雅黑" size=2 color=blue>这是微软雅黑 字体2 blue(蓝色)</font>
<font face="黑体" size=3 color=cyan>这是黑体 字体3 cyan(青色)</font>
<font face="华文行楷" size=4 color=magenta>这是华文行楷 字体4 magenta(洋红色)</font>
<font face="方正姚体" size=5 color=yellow>这是方正姚体 字体5 yellow(纯黄色)</font>
<font face="楷体" size=6 color=orange>这是楷体 字体6orange(橙色)</font>
<font face="幼圆" size=7 color=green>这是幼圆 字体7 green(绿色)</font>
<font face="隶书" size=8 color=#FFD700>这是隶书 字体8 颜色代码为:#FFD700</font>

Effect:

This is Songti font 1 red (red)
This is Microsoft Yahei font 2 blue (blue)
This is black font 3 cyan (cyan)
This is Chinese regular script font 4 magenta (magenta)
This is Founder Yao font 5 yellow ( Pure yellow)
This is the regular script font 6orange (orange)
This is the round font 7 green (green)
This is the official script font 8 The color code is: #FFD700


2. Font centering, bolding, italics, dividing lines

  • Center: can only be centered independently of one line
  • You can use HTML syntax or double asterisks to bold**
  • The dividing line can be used ***or ----the effect is the same
<center>居中</center>
**加粗** 或者  <font><b>加粗内容</b></font>
*倾斜*
分割线:---------------------- 或者 *****

Effect:

center
**Bold**

tilt


3. Indentation

缩进半个字符	&nbsp;
缩进一个字符	&ensp;
缩进两个字符	&emsp;

4. Underline, strikethrough, blank line/line feed

  • Underline
  • strikethrough
  • blank line

  • blank line
<u>下划线</u>
~~删除线~~
空行	<br>

5. Add jump directory

@[TOC](目录名)

# 标题1
# 标题2
# 标题3
# 标题4

Color reference table:
Insert image description here

Guess you like

Origin blog.csdn.net/Sandersonia/article/details/132259413