HTML Tag ႏွင့္ CSS
ကၽြန္ေတာ္တို႕ CSS ကို html tag ေတြမွာလည္း ေရာသံုးလို႕ရပါတယ္...
ကၽြန္ေတာ္ဆိုလိုတာက body , a , td အ ဲလို tage ေတြအ တြက္ပါ...
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
body
{
font-family:Zawgyi-one;
color:green; // not a name of sone ma :)
}
.myhead
{
font-family:verdana;
color:red;
}
#myid
{
font-family:verdana;
color:blue;
}
</style>
</head>
<body>
This is green color
<span class="myhead">This is span tag class</span>
<span id="myid">This is span tag id</span>
This is body message
</body>
</html>
ဒါဆိုရင္ေတာ့ This is green color နဲ႕ This is body message ေတြက အစိမ္းေရာင္အ ေနနဲ႕ေပၚေနပါမယ္...
0 comments:
Post a Comment