Update 'index.html'

This commit is contained in:
awesomeuser 2023-07-07 17:24:56 +00:00
parent c3685080b0
commit 56820971cd

View file

@ -19,6 +19,26 @@
list-style-type: none; list-style-type: none;
} }
/* unvisited link */
a:link {
color: red;
}
/* visited link */
a:visited {
color: green;
}
/* mouse over link */
a:hover {
color: hotpink;
}
/* selected link */
a:active {
color: blue;
}
</style> </style>
</head> </head>