Answers for "html page css style"

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
0

css / style

<style>
  h2 {
    color: red;
  }
</style>
<!-- all h2 elements will become red for example -->
<h2>
  i am the best
  </h2>
<!-- i am the best would be red
Posted by: Guest on April-29-2021

Browse Popular Code Answers by Language