I am just starting out with coding and I need to figure out how to increase the font size of my link.
<!DOCTYPE html>
<html>
<head>
<style>
/* unvisited link */
a:link {
color: #FFFFFF;
}
/* visited link */
a:visited {
color: #FFFFFF;
}
/* mouse over link */
a:hover {
color: #43c6de;
}
/* selected link */
a:active {
color: #43c6de;
}
</style>
</head>
<body>
<a href="(linkaddress)">Want the latest updates? Click here to download now!
</a>
Can anyone offer some assistance? Appreciate it!