1<!--This is an example of html problem-->
2
3<!doctype html>
4
5<html>
6 <head>
7 <link rel="stylesheet" type="text/css" href="test.css">
8 </head>
9
10 <body>
11 <p id="one"><p>Paragraph 1</p>
12 <p id="two"><p>Paragraph 2</p>
13 <p class="three">Paragraph 3</p>
14 <p class="four">Paragraph 4</p>
15 </body>
16</html>
17
1/* This is the reference to style the above code of html in css*/
2
3#one{
4 font-family: 'Impact';
5 color: red;
6 font-size: 25px;
7}
8#two{
9 font-family: 'Times New Roman';
10 color: blue;
11 font-size: 50px;
12}
13.three{
14 font-family: 'Impact';
15 color: red;
16 font-size: 25px;
17}
18.four{
19 font-family: 'Times New Roman';
20 color: blue;
21 font-size: 50px;
22}
23