Write CSS code to make all second-level headings (h2 elements) green and italic.
Create the file "styleH2.CSS" and add the code below:
h2 {
color: green;
font-style: italic;
}
Create the file "headingsgreenItalic.html" and add the code below:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styleH2.css">
</head>
<body>
<h2>This is the first heading h2</h2>
<h2>This is the second heading h2</h2>
</body>
</html>
Comments
Leave a comment