Home  >  Article  >  Web Front-end  >  How to use html mark tag

How to use html mark tag

青灯夜游
青灯夜游Original
2019-05-27 17:10:014121browse

The

mark tag is a new tag in HTML5, which is used to define text with marks and is used when text needs to be highlighted. Note: Internet Explorer 8 and earlier does not support the tag.

How to use html mark tag

html How to use mark tag?

html The mark tag defines text with marks.

Description: The tag is a new tag in HTML 5 that can be used when you need to highlight text.

Note: Internet Explorer 8 and earlier does not support the tag.

html mark tag example

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
</head>
<body>
<p><mark>西门大官人</mark>是PHP中文网的<mark>高级讲师</mark></p>
</body>
</html>

Rendering:

How to use html mark tag

The above is the detailed content of How to use html mark tag. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to use html menu tagNext article:How to use html menu tag