where to define style tag in html file code example
Example 1: how to style in html file
<p style="text-align: center; color: pink;">Hello World</p>
Example 2: where do you put style tags in html
// Style tags belong in <head>
<p style="text-align: center; color: pink;">Hello World</p>
// Style tags belong in <head>