介绍Markdown的一些字处理,包括字体、颜色、背景颜色、大小、排版。
1 字体颜色
1<font color="red">红色</font>
红色
2 字体
1<font face="STCAIYUN">华文彩云</font>
华文彩云
3 字体大小
1<font size="5">我的大小为5哦</font>
我的大小为5哦我是正常尺寸
4 字体背景颜色
1<font style="background:red">我有黄颜色背景</font>
2<font style="background-color:red">我有黄颜色背景</font>
我有黄颜色背景
5 CSS-Style 代替font标签
1<span style="color:red; background-color:yellow; font-size: 22pt; font-family:STCAIYUN;">Lunat</span>
Lunat
6 文本居中
1<p style="text-align:center;">我在中间</p>
我在中间
7 mark 文本
1<mark>mark文本</mark>
mark文本