Skip to content

Instantly share code, notes, and snippets.

@thibaudcolas
Created May 29, 2020 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thibaudcolas/19341c2b3637093d1bca3beadf25f60b to your computer and use it in GitHub Desktop.
Save thibaudcolas/19341c2b3637093d1bca3beadf25f60b to your computer and use it in GitHub Desktop.
strong vs. b, em vs. i
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>strong vs. b, em vs. i</title>
</head>
<body>
<main>
<h1>strong vs. b, em vs. i</h1>
<p>
This is <strong>marked as strong</strong>, this is <b>marked as b</b>.
</p>
<p>This is <em>marked as em</em>, this is <i>marked as i</i>.</p>
</main>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment