body {    font-family: Garamond;}h1 {    color: gray;    font-family: "Monotype Corsiva";    font-size: xx-large;}h2 {    color: gray;    font-family: "Monotype Corsiva";    font-size: medium;}h3 {    color: gray;    font-family: "Monotype Corsiva";    font-size: medium;}h4 {    color: red;    font-family: "Monotype Corsiva";    font-size: large;}p {    color: gray;    font-family: "Monotype Corsiva";    font-size: medium;    font-weight: bold;}menu {    color: gray;    font-family: "Monotype Corsiva";    font-size: medium;    font-weight: bold;} 

.image {
	position:relative;
	float:center; /* optional */
}
.image .text {
	position:absolute;
	color: red;
	font-family: "Monotype Corsiva";
	font-size: xx-large;
	top:30px; /* in conjunction with left property, decides the text position */
	left:40px;
	width:140px; /* optional, though better have one */
}
