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
'HTML' 카테고리의 다른 글
[HTML] HTML / a / Creating links (0) | 2022.08.19 |
---|---|
[HTML] HTML / pre / tag to output as you type (0) | 2022.08.12 |
[HTML] HTML/q, blockquote/quote (0) | 2022.08.04 |
[HTML] HTML/ol, ul, dl/sorted list, unsorted list, definition list (0) | 2022.08.04 |
[HTML] HTML/br/line break tag (0) | 2022.08.04 |