0
How i can use Html and Css at the same time ..?
5 Respuestas
+ 2
You use CSS to style html elements.
+ 2
M'hamed EL Heddaj take a look at this lesson for example:
https://www.sololearn.com/learn/CSS/1103/
there is a <p> tag in the html.
so, in the css you’d select the p tag, and style it however you want. like this:
p{
color: blue;
background-color: green;
font-size: 66px;
}
+ 1
Thank you
0
How can i do that ... when i write something in the part of CSs it does not give an outlook
0
In the head tag add <link rel="stylesheet" href="yourcssfile.css">