-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLearnCSS.html
More file actions
36 lines (28 loc) · 739 Bytes
/
LearnCSS.html
File metadata and controls
36 lines (28 loc) · 739 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Learn CSS</title>
<meta charset="utf-8" />
<!--<style>
h2,h3 {
color: blue;
}
p {
background-color: aqua;
}
</style>-->
<link href="MVCTutorial.css" rel="stylesheet" />
</head>
<body>
<h1 style="color:red;font-size:large">This is Heading</h1>
<h2>This is Heading</h2>
<h3>This is Heading</h3>
<h4>This is Heading</h4>
<h5>This is Heading</h5>
<h6>This is Heading</h6>
<p>This is sample Paragraph</p>
<p class="myparagraph">This is sample second Paragraph</p>
<div class="myparagraph myborder">This is sample div</div>
<div id="mydiv">This is second div</div>
</body>
</html>