援助组织
我该如何设置文字风格
答案 0 :(得分:2)
内联解决方案:
<a href="..." style="font-family: Arial">Hilfe</a>
更好的解决方案是使用单独的样式表或<style>...</style>
块,以便您可以为多个元素重用样式:
<style>
a { font-family: Arial; } /* this is valid for all links */
a.help { font-family: Arial; } /* this is valid links with class="help" */
<style>
...
<a href="..." class="help">Hilfe</a>
有关CSS /样式表的介绍,请查看this tutorial。
答案 1 :(得分:0)
在样式标记中指定字体样式,如下所示 -
&LT; href =“javascript:NewWindow = window.open('anleitung.aspx','NewWindow','top = 81,left = 499,width = 400,height = 400'); NewWindow.focus()” style = “font-family:Arial字体强>” &GT;援助组织