<font face="逐浪新宋">我是逐浪新宋</font>
<font face="逐浪圆体">我是逐浪圆体</font>
<font face="逐浪花体">我是逐浪花体</font>
<font face="逐浪像素字">我是逐浪像素字</font>
<font face="逐浪立楷">我是逐浪立楷</font>
<font color=red>我是红色</font>
<font color=#008000>我是绿色</font>
<font color=yellow>我是黄色</font>
<font color=Blue>我是蓝色</font>
<font color= #871F78>我是紫色</font>
<font color= #DCDCDC>我是浅灰色</font>
<font size=5>我是尺寸</font>
<font size=10>我是尺寸</font>
<font face="逐浪立楷" color=green size=10>我是逐浪立楷,绿色,尺寸为5</font>
def create_simple_table(data):
table = "| Header1 | Header2 |\n| ------- | ------- |\n"
for row in data:
table += f"| {row[0]} | {row[1]} |\n"
return table
data = [("Row1Data1", "Row1Data2"), ("Row2Data1", "Row2Data2")]
markdown_table = create_simple_table(data)
print(markdown_table)