-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy path2.1 Add a paragraph about CSS.html
More file actions
24 lines (20 loc) · 1.12 KB
/
2.1 Add a paragraph about CSS.html
File metadata and controls
24 lines (20 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<title>Annie's Wiki</title>
</head>
<body>
<h1>Welcome to annie's wiki</h1>
<h2>About Programming</h2>
<p>Programming is a way to <strong>“instruct the computer to perform various tasks” </strong>. Confusing? Let us
understand the definition deeply. “Instruct the computer”: this basically means that you provide the computer a set
of instructions that are written in a language that the computer can understand.</p>
<h3>About HTML</h3>
<h3>About CSS</h3>
<p>Cascading Style Sheets is a style sheet language used for describing the presentation of a document written in a markup language such as HTML.
CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript. </p>
<!-- Enter your code below this line-->
<!-- Add this paragraph about CSS : Cascading Style Sheets is a style sheet language used for describing the presentation of a document written in a markup language such as HTML. CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript. -->
<!-- Enter your code above this line-->
</body>
</html>