Answers for "how to inline style html"

0

how to use style in html

A text that uses A LOT the style tag:
<!doctype html>
<html>
  <body>
	<p class="example" style="border:solid 15px red; color: orange; background-color: blue; cursor: pointer; ">A text</p>
  </body>
</html>
Posted by: Guest on November-07-2021
1

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