0
¿Cómo agregar CSS a código HTML, se hace en el mismo archivo o por archivos a parte y como se hace?
2 odpowiedzi
+ 2
Check this lesson about Css
https://www.sololearn.com/learn/CSS/1079/
0
Hola!
Podes agregarlo en el mismo html entre tags <style> y </style>
<style>
body {color: red;;
</style>
Dentro de head.
O en un archivo externo e incluirlo desede el html también dentro de la sección head:
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
O en cada tag (inline css)
<p style="color:red;">This is a paragraph.</p>