<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#container {
width: 200%;
}
#p1, #p2 {
width: 50%;
float: left;
}
#p1 {
text-align: left;
}
#p2 {
text-align: center;
}
</style>
</head>
<body>
<div id="container">
<div id="p1">
<a href="#p2">Typefaces</a>
</div>
<div id="p2">This is a test</div>
</div>
</body>
</html>