Home >Web Front-end >HTML Tutorial >How can we add bold text in HTML?
To display bold text, use the tag. HTML tags are used to emphasize important text.
You can try running the following code to implement the tag in HTML−
<!Doctype html> <html> <head> <title>HTML strong Tag</title> </head> <body> <p>This is an <strong>important</strong> text</p> </body> </html>
The above is the detailed content of How can we add bold text in HTML?. For more information, please follow other related articles on the PHP Chinese website!