1st word at dead center of page

Hi,

Making a website, and I want my homepage to be bascially a couple of paragraphs.

I want the first word of the first paragraph to be at the dead center of the page, regardless of the users screen resolution or browser type.
Then, all following text below that word which is at dead center.

How can I do that?

jbonhamPut the first word in a heading tag.but how do I ensure that the heading is at dead center of the page, regardless of browser type or screen resolution?Dead center (<!-- m --><a class="postlink" href="http://www.wpdfd.com/editorial/thebox/deadcentre4.html">http://www.wpdfd.com/editorial/thebox/deadcentre4.html</a><!-- m -->)Are you looking for something like this?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang='en'>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=ISO-8859-1'>
<title>Untitled</title>
<style type="text/css">
<!--
p.indent {
text-indent: 45%;
}
-->
</style>
</head>
<body>
<p class=indent>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum
dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident,
sunt in culpa qui officia deserunt mollit anim id est laborum</p>
</body>
</html>thanks all
and Fang for the link

jbonham
 
Top