<p style="margin-left: 14" class="style19"><b>
<font size="6" color="#001E5A" face="Arial">401K Rollover and
Retirement Planning Center</font></b>
在不影响字体或其他特征的情况下,我应该在哪里添加<h1>
和标签?</h1>
<p style="margin-left: 14" class="style19"><b>
<font size="6" color="#001E5A" face="Arial">401K Rollover and
Retirement Planning Center</font></b>
在不影响字体或其他特征的情况下,我应该在哪里添加<h1>
和标签?</h1>
您不应该使用标记进行样式设置 - 为此使用 CSS,例如:
标记:
<h1> 401K Rollover and Retirement Planning Center</h1>
CSS
h1{
font-size: 6px;
font-family: Arial;
font-weight: bold;
}
您可以将 CSS 代码嵌入<style type="text/css">
标签或外部文件中,您可以将其称为:
<link rel="stylesheet" type="text/css" href="/path/to/someStyleSheet.css">
无论如何,请在线搜索一些最近的 Web 开发指南,以便更好地了解该主题。