31 lines
670 B
HTML
31 lines
670 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Body tag top left value</title>
|
|
<style type="text/css">
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Love Sayings</h1>
|
|
|
|
<p> Gravity. It keeps you rooted to the ground.<br>
|
|
In space, there's not any gravity.<br>
|
|
You just kind of leave your feet and go floating around.<br>
|
|
Is that what being in love is like?<br><br>
|
|
|
|
<b>Josh Brand and John Falsey</b></p>
|
|
|
|
|
|
</body>
|
|
</html>
|