<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>
<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>
<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>
3条答案
按热度按时间vatpfxk51#
如果你不“想”使用css,“字体”似乎有一个颜色属性...
告诉我们你为什么不想使用css?
a1o7rhls2#
为此,可以使用内联样式
如果需要,可以在HTML元素的style属性中添加其他样式属性,方法是使用
;
分隔属性13z8s7eq3#
您可以使用
<style>
元素来使用CSS,而无需引用其他CSS文件。