如何在html中为文本中的一些单词添加颜色?

k75qkfdt  于 2023-04-18  发布在  其他
关注(0)|答案(3)|浏览(158)

比如我想给手机和邮件添加color=red,用**...**括起来,好像不能用embedded来添加颜色,如果不用CSS,怎么直接给它添加颜色呢?

<p>For appointment, please call Martin at <strong>xxx-xxx-xxxx</strong> or email at <strong>support@test.com.</strong></p>
vatpfxk5

vatpfxk51#

如果你不“想”使用css,“字体”似乎有一个颜色属性...

<p>For appointment, please call Martin at <strong><font color="red">xxx-xxx-xxxx</font></strong> or email at <strong><font color="blue">support@test.com</font></strong>.</p>

告诉我们你为什么不想使用css?

a1o7rhls

a1o7rhls2#

为此,可以使用内联样式

<p>For appointment, please call Martin at <strong style="color:red">xxx-xxx-xxxx</strong> or email at <strong style="color:red">support@test.com.</strong></p>

如果需要,可以在HTML元素的style属性中添加其他样式属性,方法是使用;分隔属性

13z8s7eq

13z8s7eq3#

您可以使用<style>元素来使用CSS,而无需引用其他CSS文件。

<style>
  .redtext {
    color: red;
  }
</style>
<p>For appointment, please call Martin at <strong class="redtext">xxx-xxx-xxxx</strong> or email at <strong class="redtext">support@test.com.</strong></p>

相关问题