-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path05.styles.html
More file actions
26 lines (19 loc) · 748 Bytes
/
Copy path05.styles.html
File metadata and controls
26 lines (19 loc) · 748 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
<!DOCTYPE html>
<html>
<body>
<!-- <tagname style="property:value;">
The property is a CSS property. The value is a CSS value. -->
<p>I am normal</p>
<p style="color:green;">I am green</p>
<p style="color:blue;">I am blue</p>
<p style="font-size:36px;color:purple;">I am big and purple colored</p>
<body style="background-color:gray;">
<!-- The background-color property defines the background color for an HTML element -->
<h1 style="text-align:center;">Centered Heading</h1>
<p style="text-align:center;">Centered paragraph.</p>
<h1 style="text-align:left;">Left Heading</h1>
<p style="text-align:left;">Left paragraph.</p>
<h1 style="text-align:right;">Right Heading</h1>
<p style="text-align:right;">Right paragraph.</p>
</body>
</html>