CSS Overview
CSS Overview
h1
{
font-size:28px;
font-weight:bold;
text-align:center;
}
2. Internal css syntax:
In the <head> section of an individual web page, include the following:
<style type="text/css">
selector {property:value; property:value; property:value;}
or:
selector
{
property:value;
property:value;
property:value;
}
</style>