Need help

FXB

New Member
This might not be the best place to post my question but I am trying to change font and color of text in my HTML code and cannot find a way to do it.


This is what I have. Any pointers
Code:
<!DOCTYPE html>
<html>
	<head>
		<title font-family:garamond color:red;>Table Time</title>
	</head>
	<body>
		<h1>Change my font and color</h1>
		
		
	</body>
</html>
 

johnb35

Administrator
Staff member
I've moved your post to a new thread. You will get a better response being a new thread.
 

FXB

New Member
Where has it been moved?

I dont get email notifications when response are posted.
 

johnb35

Administrator
Staff member
You posted it in someone else's thread so I moved it here to your own thread. In order to get email notifications when someone replies to your thread then go into your user cp and click on edit options on the left side and then find where it says "Default Thread Subscription Mode" not too far down the page and choose how you want to get email notifications. You can also do this on each individual post or thread you create.
 

Troncoso

VIP Member
This might not be the best place to post my question but I am trying to change font and color of text in my HTML code and cannot find a way to do it.


This is what I have. Any pointers
Code:
<!DOCTYPE html>
<html>
	<head>
		<title font-family:garamond color:red;>Table Time</title>
	</head>
	<body>
		<h1>Change my font and color</h1>
		
		
	</body>
</html>

Code:
<font color="red" face="Arial"><h1>Change my font and color</h1></font>

or

Code:
<h1 style="color: red; font-family: Arial">Change my font and color</h1>

or

Code:
<style>
h1
{
    color: red;
    font-family: Arial;
}
</style>
<h1>Change my font and color</h1>
 
Top