1<p>I will display €</p>
2<p>I will display €</p>
3<p>I will display €</p>
1<!DOCTYPE html>
2<html>
3<head>
4<style>
5.classname {
6 background-color: green;
7 color: white;
8}
9#idname {
10 background-color: pink;
11 color: white;
12}
13</style>
14</head>
15<body>
16<div class="classname">I am green colour<div>
17<div id="idname">I am pink colour</div>
18</body>
19</html>
20