Answers for "how to put a css code in html"

CSS
2

how to add css to html

<link rel="stylesheet" href="hi.css">
Posted by: Guest on July-01-2020
2

how to css html

<html>
<head>
<style>
body{
	direction:rtl;
}
  </style>
  </head>
  <body>
  </body>
</html>
Posted by: Guest on January-24-2021
0

how to add css in html

/*
adding css without a css file
*/

/*
in head add
*/

<style>
	/* put in your normal css*/
</style>
Posted by: Guest on March-14-2021

Code answers related to "how to put a css code in html"

Browse Popular Code Answers by Language