markdown font color, size, style, background color,

文章转自(https://blog.csdn.net/wsp_1138886114/article/details/80520171)

First, the choice of font color

浅红色文字:<font color="#dd0000">浅红色文字:</font><br /> 
深红色文字:<font color="#660000">深红色文字</font><br /> 
浅绿色文字:<font color="#00dd00">浅绿色文字</font><br /> 
深绿色文字:<font color="#006600">深绿色文字</font><br /> 
浅蓝色文字:<font color="#0000dd">浅蓝色文字</font><br /> 
深蓝色文字:<font color="#000066">深蓝色文字</font><br /> 
浅黄色文字:<font color="#dddd00">浅黄色文字</font><br /> 
深黄色文字:<font color="#666600">深黄色文字</font><br /> 
浅青色文字:<font color="#00dddd">浅青色文字</font><br /> 
深青色文字:<font color="#006666">深青色文字</font><br /> 
浅紫色文字:<font color="#dd00dd">浅紫色文字</font><br /> 
深紫色文字:<font color="#660066">深紫色文字</font><br /

   
   
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
Light red text: light red text
crimson Text: dark red text
light green text: light green text
dark green text: dark green text
blue text: blue character
dark blue text: dark blue text
pale yellow text: pale yellow text
yellow text: yellow text
light cyan text: light cyan text
teal text: teal text
light purple text: light purple text

Dark purple Text: deep purple text

More color choices such as

http://www.114la.com/other/rgb.htm

Second, the font size

size为1:<font size="1">size为1</font><br /> 
size为2:<font size="2">size为2</font><br /> 
size为3:<font size="3">size为3</font><br /> 
size为4:<font size="4">size为4</font><br /> 
size为10:<font size="10">size为10</font><br /> 
   
   
  • 1
  • 2
  • 3
  • 4
  • 5

Results are as follows:

size is. 1: size. 1 is a
size of 2: size 2 to
size is. 3: size. 3 is a
size of 4: size 4

size 10: size 10

Third, font style

<font face="黑体">我是黑体字</font>
<font face="宋体">我是宋体字</font>
<font face="微软雅黑">我是微软雅黑字</font>
<font face="fantasy">我是fantasy字</font>
<font face="Helvetica">我是Helvetica字</font>

   
   
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

Results are as follows:

I was bold

I Typeface
I was Microsoft elegant black and
I was italics
I am Times New Roman font
I am a fantasy word
I Helvetica word

Four, background color

<table><tr><td bgcolor=#FF83FA>背景色的设置是按照十六进制颜色值:#FF83FA</td></tr></table>
<table><tr><td bgcolor=#D1EEEE>背景色的设置是按照十六进制颜色值:#D1EEEE</td></tr></table>
<table><tr><td bgcolor=#C0FF3E>背景色的设置是按照十六进制颜色值:#C0FF3E</td></tr></table>
   
   
  • 1
  • 2
  • 3

The background color is set in accordance with hex color value: # FF83FA
The background color is set in accordance with hex color value: # D1EEEE
The background color is set in accordance with hex color value: # C0FF3E

Fifth, the title set

# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题
   
   
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
Results are as follows:

A title

Subheadings

Three title

Four title

Five title
Six title

Sixth, the details set

6.1 references

>引用
 >>引用中的引用
   
   
  • 1
  • 2

6.2 List

* 无序列表
* 无序列表
* 无序列表
   
   
  • 1
  • 2
  • 3
  • Unordered list
  • Unordered list
  • Unordered list

6.3 Nesting

- 嵌套列表1
 + 嵌套列表2
 + 嵌套列表3
  - 嵌套列表4
   * 嵌套列表5
- 嵌套列表6
   
   
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 1 nested list
    • Nested list 2
    • 3 nested list
    • 4 nested list
    • 5 nested lists
  • 6 nested list

Table 6.4

| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is      | right-aligned | $1600 |
| col 2 is      | centered      |   $12 |
| zebra stripes | are neat      |    $1 |
   
   
  • 1
  • 2
  • 3
  • 4
  • 5


Released three original articles · won praise 3 · Views 1309

Guess you like

Origin blog.csdn.net/qq_42848174/article/details/103943798