IF I AM NOT WRONG ..........
I AM USING THESE CODE:
these code only in html .................
<html>
<head>
<title>RED COLOR IN BOLD TYPE PARAGRAPH</title>
</head>
<body>
<p><font color='red'><b>TYPE THE PARAGRAPH</b></font></p>
</body>
</html>
............................................
now you can use css style ::::::::::::::::::::::::::::::::::;
<html>
<head>
<title>RED COLOR FONT WITH BOLD STYLE</title>
</head>
<body>
<p style="color:red; font-weight:bold;"> type the paragraph</p></body>
</html>
..........................................
now with css style ::::::::::::::::::::::::::::::::
<html>
<head>
<title>RED COLOR FONT WITH BOLD STYLE</title>
<script type="text/css">
p
{
color: red;
font-weight: bold;
}
</script>
</head>
<body>
<p>type the paragraph here</p>
</body>
</html>
BY BHARAT383 FROM BHUJ - KUTCH
__________________
BHARAT383
|