Home >Web Front-end >HTML Tutorial >Create emphasized text in HTML
To display strong text, use the tag. The HTML tag is 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 Create emphasized text in HTML. For more information, please follow other related articles on the PHP Chinese website!