HTML

[HTML] HTML/em, strong/highlight text, important text

OOQ 2022. 8. 12. 09:19
728x90
SMALL

#HTML

#em,strong

#highlight text, important text

 

em, strong

The em tag is used for emphasized text. The basic form is italic.
Use the strong tag for important text. The basic shape is bold.

 

example

<!doctype html>
<html lang="en">
  <head>
  <meta charset="utf-8">
    <title>HTML</title>
    <style>
      body { font-size: 64px; }
    </style>
  </head>
  <body>
    <p>Lorem <em>Ipsum</em> <strong>Dolor</strong>.</p>
  </body>
</html>

 

TIP

The b tag makes the text bold. The difference from strong is that it is thickened without adding meaning.

728x90
LIST