+ 2
Thank for reading !!!
I have learned HTML for few week and read some code about CSS. But I don't know how to add CSS into my HTML. Can you help me ? Thank you very much !!!
1 Antwort
+ 1
You can style elements in HTML like this
<head>
<title>Page title</title>
<style>
#elementIdHere {
color:green;
background-color:blue;
}
</style>
</head>
this is called internal CSS