Hello :) I am currently in the process of learning how to do website development, and I am trying to use CSS instead of HTML. The only problem is, I'm stuck. I currently have this:
But how would I change the font size to around "16" equivalent in Microsoft Word? Thankyou.HTML Code:<html>
<head>
<style type="text/css">
a:link {text-decoration:none;}{color:#FF0000;} /* unvisited link */
a:visited {color:#00FF00;} /* visited link */
a:hover {color:#FF00FF;} /* mouse over link */
a:active {color:#0000FF;} /* selected link */
</style>
</head>
<body>
<p><b><a href="http://www.google.co.uk" target="_blank">This is a link to Google</a></b></p>
</body>
</html>

