-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.html
More file actions
28 lines (27 loc) · 1.37 KB
/
css.html
File metadata and controls
28 lines (27 loc) · 1.37 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
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<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>Document</title>
</head>
<body>
<ul class="topnav">
<li><a href="index.html">Home</a></li>
<li><a class= "active" href="css.html">CSS</a></li>
<li><a href="about me.html">About Me</a></li>
<li><a href="reasons.html">Why Web Devpt</a></li>
</ul>
<div class="index">
</body>
<h1>CSS</h1>
<h2>WHAT IS CSS</h2>
<p>Cascading Style Sheets allows you to create great-looking web pages, but how does it work under the hood? This article explains what CSS is with a simple syntax example and also covers some key terms about the language. However, the web would be a boring place if all websites looked like that. Using CSS, you can control exactly how HTML elements look in the browser, presenting your markup using whatever design you like.
</p>
<h3>What Can CSS Be Used For</h3>
<p>
As i have mentioned before, CSS is a language for specifying how documents are presented to users — how they are styled, laid out, etc.
A document is usually a text file structured using a markup language — HTML is the most common markup language, but you may also come across other markup languages such as SVG or XML.
</p>
</html>