0
If we want ti write coding we have to do it in html coding itself or any other?
I m confused can anyone explain me clearly
3 ответов
0
are you talking about "code playground"?
0
you can write the CSS coding in three ways:-
1. write an another css document with extension .css
and then link it to your html document like this
<head><link rel="stylesheet" href="mahaveer.css"></head>.
2. in the same document.
write your all css in style tags between head tags.
<head>
<style>
...................
................
</style>
</head>
3. inline .
like this.
<p style="color:red;">
0
were you asking this or anything else....?!