grand
Sex? Yes please.
- May 4, 2014
- 249
- 79
How do I move the button in the top left corner into the rectangle i selected?
Here is the code and screenie:
Here is the code and screenie:
You must be registered for see images attach
HTML:
<html>
<head>
<meta charset=utf-8>
<style>
body {
background-color: #202020;
}
h1 {
font-family: "Verdana";
left: 0;
line-height: 200px;
margin: auto;
margin-top: -100px;
position: absolute;
top: 50%;
width: 100%;
font-size: 200%;
text-align: center;
}
.button{
font-family: "Emotion Engine":
background-color: #800000;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 100px;
}
</style>
</head>
<body>
<h1> <font color = #800000>Welcome to Aux Gaming.</font></h1>
<a href="home.php" class="button">Let's go.</a>
</body>
</html>