+ 1
What's the meaning of strong in html
<strong>
3 ответов
+ 19
The <strong> tag defines important text.
https://www.w3schools.com/TAgs/tag_strong.asp
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/strong
+ 3
thanks very much
+ 2
To add to the excellent answer before my own: strong defines important text by making it bold this way it stands out. Another way to add this effect it by putting <b></b> around the text you want to bolden or give “strength”. You can also use a bit of css, giving a tag an id or a class and putting into the class/tags attributes font-weight:bold; . You can also use font-weight: 700; or 800 and 900 if you want to bolden the text even more. Good luck and happy coding!