Salesforce表单中的字体更改

时间:2017-07-14 14:07:10

标签: html

我希望以我想要放入公司网站的形式更改标签/书写的字体。它似乎没有遵循我在其他HTML表单中看到的格式,而且我几乎没有使用HTML编码的经验。任何帮助,将不胜感激。我的原始代码中有表单动作的东西,表单工作正常,我只需要更改字体。添加font-family:" Helvetica"放在id =

之后没有做任何事情



<label for="first_name">First Name</label><input  id="first_name"
maxlength="40" name="first_name" size="20" type="text" /><br>

<label for="last_name">Last Name</label><input  id="last_name" maxlength="80" name="last_name" size="20" type="text" /><br>

<label for="title">Title</label><input  id="title" maxlength="40" name="title" size="20" type="text" /><br>

<label for="company">Company</label><input  id="company" maxlength="40" name="company" size="20" type="text" /><br>

<label for="state">State/Province</label><input  id="state" maxlength="20" name="state" size="20" type="text" /><br>

<label for="country">Country</label><input  id="country" maxlength="40" name="country" size="20" type="text" /><br>

<label for="phone">Phone</label><input  id="phone" maxlength="40" name="phone" size="20" type="text" /><br>

<label for="email">Email</label><input  id="email" maxlength="80" name="email" size="20" type="text" /><br>

<input type="submit" name="submit"
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:0)

是的@Gabe 使用内联样式(它们与 html 元素“在同一行”) Julian 提到的另一种方法是用于外部样式表或在样式元素中应用的样式。像这样的元素:

   <head> 
...Some other stuff here...
     <style>
     label {font-family: Helvetica}
     </style>
   </head>