Home > Article > Web Front-end > html: Detailed explanation of the use of mark tags
mark tag: The
mark element represents the content that needs to be highlighted or highlighted on the page. It also often appears in search results, such as keyword highlighting in search results. .
Case:
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>HTML5每日一练之mark标签的应用</title> </head> <body> <p>HTML5|CSS3|论坛 | <mark>前端开发!</mark></p> <p>HTML5论坛,CSS3论坛,CSS论坛,WEB前端开发论坛,教程资源完全免费的网页教学网</p> </body> </html>
Definition and usage
f920514e6447cf1d171079d1371f007f tag defines text with a mark. Please use the bf0a3ee2313fa3fd6336f44055720eef tag when you need to highlight text.
The above is the detailed content of html: Detailed explanation of the use of mark tags. For more information, please follow other related articles on the PHP Chinese website!