Click here to Skip to main content
15,893,508 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
how do i make bold in html page

What I have tried:

<html>
<head>
<body>

</body>
</head>

<html>
Posted
Updated 5-Mar-16 23:24pm
Comments
Sergey Alexandrovich Kryukov 5-Mar-16 2:29am    
By learning HTML (CSS, and so on). Do you seriously want to learn anything asking such questions? Writing in HTML is one of the most basics skills, which cannot be even considered as software development. Take some time, read the documentation/manual and write. Don't waste your and our time.
—SA
Jim Meadors 5-Mar-16 2:35am    
Your <body/> is inside your <head/> which is not a good start. Sergey is right. You should get a beginner book or something.

To learn HTML, abuse this site
W3Schools Online Web Tutorials[^]
 
Share this answer
 
<span style="font-weight:bold">text</span>

using this you can bold the text.
For HTML learning see www.w3schools.com/html/
 
Share this answer
 
In HTML there are lots of ways to make a text bold.
1. b - tag
2. strong - tag
3. style - font-weight:bold

Example:

HTML
<html>
<head>
</head>
<body>
Test
Hello
<div style="font-weight:bold">Div Bold</div>
</body>


<html>


Thanks,
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900