-
Notifications
You must be signed in to change notification settings - Fork 0
/
external.html
25 lines (25 loc) · 868 Bytes
/
external.html
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
<!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>testing external css</title>
<link rel="stylesheet" href="new css styles.css">
</head>
<body>
<h1>introduction to external css</h1>
<p>external css requires us to create a totL file which we late link which we later link to one or more web pages </p>
<h1>Benefits of external css</h1>
<ol>
<li>it can be used to link several pages using one css file</li>
<li>it can be used to navigete css internal files</li>
</ol>
<p>sample page linking</p>
<ol>
<li>view internal css pages</li>
<a href="inlinecss.html"><li>view line css pages</li></a>
<a href="internalcss.html"><li>view internaal css pages</li></a>
</ol>
</body>
</html>