Thank you for your help.
As for HTML5, the characters become thicker without a strong tag.
The running environment is Google Chrome.
How can the string without the strong tag be thickened?
Please let me know.
Here's the source code:
<!DOCTYPE html>
<html lang="ja">
<head>
<metacharset="utf-8">
<title>First HTML</title>
</head>
<body>
<h1>Headline <h1>
<h2>Medium Headings <h2>
<h3>Subhead <h3>
<p>Hello!<br>Hello!</p>
<p>Hello!</p>
<p>Hello!</p>
<p>Hello!</p>
<p>Hello!</p>
<p>Hello!</p>
<p><strong>Hello!</strong>/p>
</body>
</html>
Invalid closing tag for h1 h2 h3
The h tag defaults to font-weight:bold.
In the h tag
h2,h3,h4{
font-weight:normal;
}
can be resolved by the
So
<!DOCTYPE html>
<html lang="ja">
<head>
<metacharset="utf-8">
<title>First HTML</title>
<style>
US>h2,h3,h4{
font-weight:normal;
}
</style>
</head>
<body>
<h1>Headline </h1>
<h2>Medium Headings</h2>
<h3>Subhead </h3>
<p>Hello!<br>Hello!</p>
<p>Hello!</p>
<p>Hello!</p>
<p>Hello!</p>
<p>Hello!</p>
<p>Hello!</p>
<p><strong>Hello!</strong>/p>
</body>
</html>
573 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
619 Uncaught (inpromise) Error on Electron: An object could not be cloned
916 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
582 PHP ssh2_scp_send fails to send files as intended
613 GDB gets version error when attempting to debug with the Presense SDK (IDE)
© 2024 OneMinuteCode. All rights reserved.