My text is displaying in a different color, but when I try to click on it nothing happens. I must be doing something wrong with my HTML and CSS code, as I am new to this.
.column {
float: left;
width: 50%;
padding: 10px;
height:800px;
text-align: center;
color: white;
position: relative;
}
.centered {
position:absolute;
top: 430px;
left: 300px;
width: 100%
}
<!DOCTYPE html>
<html>
<div class="row">
<div class="column" style="background-color:#aaa;">
<img src="4.jpg"alt="Snow">
<div class="centered"><a href="http://www.google.com">Google</a></div>
</div>