-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.29 KB
/
index.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
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<title>Page title</title>
<link rel="stylesheet" href="style.css">
<style>
ul {color: #ff00ff;}
p {color:red;}
</style>
</head>
<body style="background-color:black">
<h1><span style="color:white">CSS</h1></span><div><span style="color:aqua">CSS</span><span style="color:aqua"> is used for presenttion of HTML document.</div></span>
<div><span style="color:aqua">CSS stands for Cascading Style Sheets</div></span>
<div><span style="color:aqua">CSS describes how HTML elements are to be displayed on screen, paper, or in other media</div></span>
<div><span style="color:aqua">CSS saves a lot of work. It can control the layout of multiple web pages all at once</div></span>
<div><span style="color:aqua">External stylesheets are stored in CSS files</div></span>
<p>It has syntax in english and can easily be understood.</p>
<h3><span style="color:white">Advantages</h1></span>
<ul style="color:aqua">
<li>Easier to maintain and update.</li>
<li>Greater consistency in design.</li>
<li>More formatting options.</li>
<li>Lightweight code</li>
<li>Faster download times.</li>
<li>Search engine optimization benefits.</li>
<li>Ease of presenting different styles to different viewers.</li>
<li>Greater accessibility.</li>
</body>
</html>