Answers for "styles in html"

8

link css file in html

<link rel="stylesheet" href="styles.css">
Posted by: Guest on May-21-2020
4

style.css in html

put in the <header> tag:

<link rel="stylesheet" href="style.css">
Posted by: Guest on May-02-2021
2

how to add style to p tag in html

<h1 style="color:blue;">This is a Blue Heading</h1>
<!DOCTYPE html>
<html>
<head>
<style>

 body {background-color: powderblue;}
h1   {color: blue;}
p    {color: red;}

</style>
</head>
<body>

<h1>This is a 
 heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
Posted by: Guest on March-14-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
3

how to style in html file

<p style="text-align: center; color: pink;">Hello World</p>
Posted by: Guest on May-14-2020

Browse Popular Code Answers by Language