Using styles in HTML
<!DOCTYPE html>
<html>
<head>
<style type="text/css"> h1 {color:red;} h2 {color:blue;} p {color:green;} </style>
</head>
<body>
<h1>All header 1 elements will be red</h1>
<h2>All header 2 elements will be blue</h2>
<p>All text in paragraphs will be green.</p>
</body>
</html>
Output
All header 1 elements will be red
All header 2 elements will be blue
All text in paragraphs will be green.
ليست هناك تعليقات:
إرسال تعليق