13 lines
185 B
CSS
13 lines
185 B
CSS
|
body {
|
||
|
font-family: arial, helvetica, sans-serif;
|
||
|
}
|
||
|
/*
|
||
|
h1 { color: red; }
|
||
|
|
||
|
h2 { color: red; }
|
||
|
|
||
|
h3 { color: red; }*/
|
||
|
h1, h2, h3 {
|
||
|
color: red;
|
||
|
text-decoration: underline;
|
||
|
}
|