To center the text, you can use:
Which text do you mean? Is it "Wenches At Work Renaissance Clothing, Pirate and Wench Wear, Gypsy Glamour"?
The basic syntax for html with CSS is either of this three:
1. Inline on the head section:
Code:
<dtd>
<html>
<head><title></title>
<style type="text/css">body{background:#f00;}</style>
</head>
<body></body></html>
2. Inline in style attribute of an element:
Code:
<p style="border:1px solid #f00;">Contents</p>
3. External:
Code:
Code:
<dtd>
<html>
<head><title></title>
<link rel="stylesheet" type="text/css" href="sourceOFcss.css">
</head>
<body></body></html>
Hope it makes sense.
Bookmarks