Homework/1-html-css/homework1/style.css
2023-03-01 18:36:43 +03:00

27 lines
No EOL
293 B
CSS

.footer {
text-align: center;
color: #777;
}
p {
font-family: Helvetica, Arial, sans-serif;
}
a,
a:link {
color: blue;
}
a:visited {
color: blueviolet;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active,
a:focus {
color: orangered;
}