-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJSG.html
More file actions
40 lines (27 loc) · 1.31 KB
/
JSG.html
File metadata and controls
40 lines (27 loc) · 1.31 KB
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
36
37
38
39
40
<html>
<head>
<title> Using Css</title>
<style type="text/css" >
/* Internal Stylesheet*/
/* Universal tag*/
H1 {
color: azure;
}
/* class Selector*/
.class68 {
color: aquamarine;
}
/* id Selector*/
#heading {
color: bisque;
}
</style>
</head>
<body>
<H1 class="class68" id="heading"> My Heading</H1>
<p id="p1">This is a Paragraph.This is a Paragraph.This is a Paragraph.This is a Paragraph.This is a Paragraph.This is a Paragraph.This is a Paragraph.vThis is a Paragraph.This is a Paragraph.This is a Paragraph.This is a Paragraph.This is a Paragraph.This is a Paragraph.This is a Paragraph.This is a Paragraph.This is a Paragraph. </p>
<p class="class68"> My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.My Paragraph.</p>
<!-- inline Stylesheet-->
<h2 style="color: green;">My Heading 2</h2>
</body>
</html>