Answers for "inline css style html"

CSS
9

how to link your css file to html

<head>
	<link rel='stylesheet' href='style.css'>
</head>
Posted by: Guest on June-18-2020
4

style.css in html

put in the <header> tag:

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

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