如何在HTML中大胆回答?

时间:2016-05-13 12:56:48

标签: html

我对编程没有任何线索。我在网站上填写简历,他们希望我大胆回答。我相信它是html格式。检查显示

<input type="TEXT" name="fn" value size="20" maxlength="40"
id="fn" onblur="this.value=spaceTrim(this.value);
validName(this,false,null,null,null,true,false);">

我如何才能使答案变得粗体?

3 个答案:

答案 0 :(得分:1)

<strong> tags </strong>

您可以使用“强标记

使文字变为粗体

答案 1 :(得分:0)

您需要指定style代码的input属性:

style="font-weight:bold"

答案 2 :(得分:0)

您可以font-weight: bold使用style

&#13;
&#13;
<input type="TEXT" name="fn" value size="20" maxlength="40"
id="fn" onblur="this.value=spaceTrim(this.value);
validName(this,false,null,null,null,true,false);" style="font-weight: bold">
&#13;
&#13;
&#13;