-
Notifications
You must be signed in to change notification settings - Fork 0
/
tut14.html
35 lines (30 loc) · 910 Bytes
/
tut14.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Colors IN CSS</title>
<style>
#firstpara {
color: aqua;
/* color by name*/
}
#secondpara {
color: rgb(100, 100, 174);
/* color by rgb value*/
}
#thirdpara {
color: #ffffff;
/* HEX value color*/
background-color: aquamarine;
}
</style>
</head>
<body>
<h2>This is my first box</h2>
<p id="firstpara">This is a paragragh from first box</p>
<h2>This is my second box</h2>
<p id="secondpara">This is a paragragh from second box</p>
<h2>This is my third box</h2>
<p id="thirdpara">This is a paragragh from third box</p>
</body>
</html>