-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinlinecss.html
More file actions
33 lines (32 loc) · 1.35 KB
/
inlinecss.html
File metadata and controls
33 lines (32 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inline css</title>
</head>
<body>
<!-- This page describes the internal css-->
<a href="htmlelements.html"><h2>click to go to the next page</h2></a>
<h1 style="color: blue; font-family: Georgia, 'Times New Roman', Times, serif; text-decoration: strike line-through; background-color: brown; ">Cascading style sheet(CSS)</h1>
<p>css is used to describe the layout of a web page</p>
<p>css can be added into a web page via three methods</p>
<ol style="background-color: aqua; color: white; font-size: 25px;">
<li>inline css</li>
<li>internal css</li>
<li>external css</li>
</ol>
<p>did you know the above?, say thank you please</p>
<p>now lets move into some of the functions of the css</p>
<ul style="text-align: left; list-style: lower-roman;">
<li>adjusting the colour of elements</li>
<li>adjusting the size and dimessions of elements</li>
<li>adjusting the layout of elements</li>
<li>provides easy maintenance</li>
<li>it saves time</li>
<li>provides platform independence</li>
<p>now do you agree you have to say thank you or not?</p>
</ul>
</body>
</html>