0
what html tags that we can apply css?
2 Respostas
+ 1
here are two of the best ways you can apply css to html:
Externally:
<link rel="stylesheet" href="(css file)" />
Id or class:
The html:
<div id="color">
<p> This is colorful </p>
</div>
The css:
#color {
color: red;
background-color: blue;
}
You can look deeper into CSS or continue finishing the course if you'd like, whatever is fine for you. Happy i could help :)
+ 1
The external method is more used for making a webpage or game with HTML and Javascript, and the other method is used more for random skits and cool animations