1
/
of
0
Regular price
$0.00 USD
Regular price
Sale price
$0.00 USD
Unit price
/
per
Couldn't load pickup availability
<body>
<meta charset="UTF-8">
<title>Styled Link</title>
<style>
.custom-link {
color: #4A90E2; /* Light blue color */
text-decoration: underline; /* Remove underline */
font-weight: bold;
font-size: 18px;
border-bottom: 2px solid transparent;
transition: all 0.3s ease;
}
.custom-link:hover {
color: #2C3E50; /* Darker on hover */
border-bottom: 2px solid #2C3E50;
}
</style>
<a href="https://proiseict.com" class="custom-link" target="_blank">Tilleadh PRÒISEICT.</a>
</body>