File tree Expand file tree Collapse file tree 3 files changed +61
-0
lines changed
Expand file tree Collapse file tree 3 files changed +61
-0
lines changed Original file line number Diff line number Diff line change 1+ h2 {
2+ color : yellow;
3+ }
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+
4+ < head >
5+ < meta charset ="UTF-8 ">
6+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
7+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
8+ < title > Document</ title >
9+ < link rel ="stylesheet " type ="text/css " href ="6.css ">
10+ < link rel ="stylesheet " type ="text/css " href ="id.css ">
11+ < style type ="text/css ">
12+ p {
13+ color : green;
14+ background-color : brown;
15+ }
16+ </ style >
17+ </ head >
18+
19+ < body >
20+ < h1 style ="color:blue "> blue</ h1 >
21+ <!--inline-->
22+ < p > green</ p >
23+ < h2 > yellow</ h2 >
24+ < h3 id ="para1 "> id</ h3 >
25+ < h3 class ="para2 "> class</ h3 >
26+ < h3 class ="para2 para3 para4 "> class</ h3 >
27+ < h3 id ="para1 " class ="para2 "> id+class</ h3 >
28+ < h3 id ="para5 "> para5</ h3 >
29+ < h3 style ="text-decoration: underline "> underline</ h3 >
30+ </ body >
31+
32+ </ html >
Original file line number Diff line number Diff line change 1+ # para1 {
2+ color : aquamarine;
3+ text-align : center;
4+ }
5+
6+ .para2 {
7+ background-color : rgb (255 , 128 , 64 );
8+ }
9+
10+ .para2 .para3 .para4 {
11+ color : aqua;
12+ }
13+
14+ body {
15+ background-image : url ('9baka&Mayuri.png' );
16+ background-repeat : no-repeat;
17+ /*background-size: 30% 30%;*/
18+ background-position : right;
19+ }
20+ .para5 {
21+ text-align : justify;
22+ }
23+ .para6 {
24+ text-align : justify;
25+ text-decoration : underline;
26+ }
You can’t perform that action at this time.
0 commit comments