I'm having a bit of trouble setting up some CSS stuff.
Here is my index.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>My Site</title>
<link rel="stylesheet" type="text/css" href="http://www.mysite.com/general.css" />
</head>
<body>
<text class="center" Welcome!>
</br>
<img src="<myimage>" alt="Logo" class="center">
</body>
</html>
and here is my general.css file:
img.center {display:block; margin-left:auto; margin-right:auto;}
body{background-color:#b0c4de;}
text{font-family:"Lucida Console";}
text.center{font-family:"Lucida Console"; text-align:center;}
My image is centered, like I want it to be. However, I would like to setup my text to always use Lucida Console as the font. But I also want to be able to setup a specific class for centering the font, like there is for the image.
Could anyone please help me do this? Thank you very much.