Answers for "how to add style inside html tag"

1

style tag html

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

inline style, straight into the HTML tags using style attribute

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

Browse Popular Code Answers by Language