-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss.html
30 lines (27 loc) · 957 Bytes
/
css.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
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS</title>
</head>
<body>
<h1>
<a href="index.html">Web</a>
</h1>
<div id="li">
<ol type="1">
<li><a href="html.html">HTML</a></li>
<li><a href="css.html">CSS</a></li>
<li><a href="js.html">JavaScript</a></li>
</ol>
</div>
<h3>CSS
<p> <a href="https://en.wikipedia.org/wiki/CSS">Cascading Style Sheets (CSS)</a>
is a style sheet language used for specifying the presentation and styling of a document written in a markup language such as HTML or XML (including XML dialects such as SVG, MathML or XHTML). <br>
<br>
CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript.<br>
</p>
</h3>
</body>
</html>