DaveT
DaveT

Reputation: 1

How to make an answer bold in html?

I have no clue about programming. I am filling out a resume on a web site and they want me to make my answer bold. I believe it is in html format. Inspect displays

<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);">

How would I make the answer bold?

Upvotes: 0

Views: 61

Answers (3)

fauliath
fauliath

Reputation: 73

<strong> tags </strong>

You can use " strong tags "

to make text bold

Upvotes: 1

Rabih El Khatib
Rabih El Khatib

Reputation: 61

You need to specify the style attribute of the input tag:

style="font-weight:bold"

Upvotes: 0

ReshaD
ReshaD

Reputation: 946

You can use font-weight: bold for your style.

<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">

Upvotes: 0

Related Questions