
- Javascript Basics Tutorial
- Javascript - Home
- Javascript - Overview
- Javascript - Syntax
- Javascript - Enabling
- Javascript - Placement
- Javascript - Variables
- Javascript - Operators
- Javascript - If...Else
- Javascript - Switch Case
- Javascript - While Loop
- Javascript - For Loop
- Javascript - For...in
- Javascript - Loop Control
- Javascript - Functions
- Javascript - Events
- Javascript - Cookies
- Javascript - Page Redirect
- Javascript - Dialog Boxes
- Javascript - Void Keyword
- Javascript - Page Printing
- JavaScript Objects
- Javascript - Objects
- Javascript - Number
- Javascript - Boolean
- Javascript - Strings
- Javascript - Arrays
- Javascript - Date
- Javascript - Math
- Javascript - RegExp
- Javascript - HTML DOM
- JavaScript Advanced
- Javascript - Error Handling
- Javascript - Validations
- Javascript - Animation
- Javascript - Multimedia
- Javascript - Debugging
- Javascript - Image Map
- Javascript - Browsers
- JavaScript Useful Resources
- Javascript - Questions And Answers
- Javascript - Quick Guide
- Javascript - Functions
- Javascript - Resources
Increase or decrease how bold or light a font appears with CSS
The font-weight property provides the functionality to specify how bold a font is. Possible values could be normal, bold, bolder, lighter, 100, 200, 300, 400, 500, 600, 700, 800, 900.
<html> <head> </head> <body> <p style = "font-weight:bold;">This font is bold.</p> <p style = "font-weight:bolder;">This font is bolder.</p> <p style = "font-weight:400;">This font is 500 weight.</p> </body> </html>
- Related Articles
- Increase or decrease the size of a font with CSS
- How we can increase or decrease friction?
- Increase or decrease units in HTML5 Canvas grid
- What are the causes of an increase or a decrease in temperatures?
- Program to check whether list is alternating increase and decrease or not in Python
- A number was increased by 20% and then decreased by 20%. The net increase or decrease percentage is
- Explain why a flower appears green with white light and black with red light.
- Increase the font size of a paragraph with Bootstrap
- Make a font italic with CSS
- Fresh milk has a pH of 6. When it changes into curd (yogurt), will its pH value increase or decrease? Why?
- How to set the font style to Bold in Python Plotly?
- How to increase the font size of a Text widget?
- Increase and decrease row value by 1 in MySQL with Stored Procedure?
- How to increase plt.title font size in Matplotlib?
- Bold font weight for LaTeX axes label in Matplotlib

Advertisements