Answers for "where to place style tag in html"

1

style tag html

<style type="text/css">
p {
  color: #26b72b;
}
</style>
Posted by: Guest on May-07-2021
4

where do you put style tags in html

// Style tags belong in <head>
Posted by: Guest on October-20-2020
0

inline style, straight into the HTML tags using style attribute

<p style="color: red">text</p>
Posted by: Guest on June-04-2021

Code answers related to "where to place style tag in html"

Browse Popular Code Answers by Language