“Смелый текст в HTML” Ответ

HTML BOLD TEXT

<html>
 <head>
   <title>Bold text</title>
 </head>
 <body>
   <p>Use the strong element to <strong>indicate strongly emphasized</strong> content.</p>
 </body>
</html>
Plain Penguin

HTML BOLD

<!--Emphasized bold text. It's for content that is of greater importance-->
<strong>I'm a content</strong>

<!--Bold text. It's used to draw attention to text without indicating that it's more important-->
<b>I'm another content</b>
Ana

Смелый шрифт html

h1{
font-weight: bold;
}
Tense Thrush

Как сделать смелый текст в HTML

<!DOCTYPE html>
<html>
   <head>
      <title>HTML text bold</title>
   </head>

   <body>
      <h2>Our Products</h2>
      <p>Developed 10 <strong>Android</strong> apps till now.</p>
   </body>
</html>
Dangerous Dove

Как смело жирным

#bold text:
<strong> this is bold </strong>
SimTheGreat

Смелый текст в HTML

<strong>Bold text</strong>
BlueMoon

Ответы похожие на “Смелый текст в HTML”

Вопросы похожие на “Смелый текст в HTML”

Больше похожих ответов на “Смелый текст в HTML” по HTML

Смотреть популярные ответы по языку

Смотреть другие языки программирования