HTML
Design you web page by yourself
Fonts
The FONT tag can be used to change the appearance of the current block, in terms of size, color and font face. The SIZE attribute can either take an absolute value, ranging from 1 to 7 or a relative value which will change the font relative to the font size as set in the basefont tag. For example, <FONT SIZE="+1"> will make the font size one step bigger than the basefont.
Syntax
<font size="n" color="#RRGGBB" face="font name">text to effect</font>
Basefont is used to set the default font size.
<basefont size="n" color="#RRGGBB" FACE="font name">
Example
<html>
<head>
<title>Html page with attributes</title>
</head>
<body bgcolor="blue" dir="ltr" lang="en">
<h1 align="center">Html page with attributes</h1>
<p> <font size="2" color ="Blue">This</font> page uses <font face="Arial"> tags</font> with attributes. Notice the use of attributes in the body
<p>tag ,I defined the entire back color page by using the bgcolor attribute, the dir <p>attribute specifies the text direction "left to right, the lang attribute specifies <p>the page language.
<p>
<p> I added the align="center" to place the header at the page center.
</body>
</html>