Answers for "style attribute in html"

3

how to write multiple style in html

<h1 style="color:blue;text-align:center">This is a header</h1>
<p style="color:green">This is a paragraph.</p>
Posted by: Guest on May-28-2020
4

html style tag

<html>
<head>
<style>
  h1 {color:red;}
  p {color:blue;}
</style>
</head>
<body>

<h1>A heading</h1>
<p>A paragraph.</p>

</body>
Posted by: Guest on September-30-2020
1

html style attribute

<!-- style inside of an html element -->
<p style="color: rgb(255, 0, 255);">I am a unicorn</p>
<!-- style as an html element -->
<style>
  /* Put in CSS */
</style>
Posted by: Guest on October-06-2020
3

html style tag

<style>
  /* Put in CSS */
</style>
Posted by: Guest on October-05-2020
2

html style tag

<html>
  <body>
    <!-- BODY HTML -->
  </body>
  <head>
    <!-- HEAD HTML -->
  </head>
  <style>
    /* CSS */
  </style>
Posted by: Guest on September-23-2020
0

style attribute in html

<p style="color: red; /* CSS */">Example</p>
Posted by: Guest on January-01-2021

Browse Popular Code Answers by Language