I see a interesting thing with title tag html, the title tag can bold. Like this page. Anyone know how to do it?
相关问题
- Views base64 encoded blob in HTML with PHP
- Is there a way to play audio on a mobile browser w
- HTML form is not sending $_POST values
- implementing html5 drag and drop photos with knock
-
Why does the box-shadow property not apply to a
One solution is to use the unicode chars of bold text. If you inspect the source of those examples that you quoted, you see this:
You can copy this line:
CSS Editor -
You can use the
<strong>
tags inside your normal text tags in HTML (<p>, <a>, <span>, etc.
)Styles cannot be applied to the
<title>
tag.In CSS, you can use the property
font-weight: bold;
on any normal text tags as well.