¿Cómo agregar CSS a código HTML, se hace en el mismo archivo o por archivos a parte y como se hace? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

¿Cómo agregar CSS a código HTML, se hace en el mismo archivo o por archivos a parte y como se hace?

29th Mar 2020, 1:45 AM
Vivi Delgado
Vivi Delgado - avatar
2 Answers
+ 2
Check this lesson about Css https://www.sololearn.com/learn/CSS/1079/
29th Mar 2020, 4:10 AM
Cmurio
Cmurio - avatar
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>
29th Mar 2020, 3:39 AM
unChabon
unChabon - avatar