Important Notice:

Course Content
CSS Framework (Chapter- 5) M2-R5.1
About Lesson

How to Use W3.CSS:-

            There are two ways to obtaining W3.CSS-

i. Local Installation:- You can download the W3.CSS file on your local machine and include it in your HTML code.

https://www.w3schools.com/w3css/4/w3.css

ii. CDN based Version:- You can include the W3.CSS file into your HTML code directly from the content delivery Network (CDN).

https://www.w3schools.com/w3css/4/w3.css

Example:-

<!DOCTYPE html>

<html>

<head>    

     <title>First Program of W3.CSS</title>

<meta name=”viewport” content=”width=device-width, initial-scale=1″>

<link rel=”stylesheet” href=”https://www.w3schools.com/w3css/4/w3.css”>

</head>

<body>

<h1>What is Computer?</h1>

     <p>A computer is a programmable electronic device that accepts raw data as input and processes it with a set of instructions (a program) to produce the result as output. It renders output just after performing mathematical and logical operations and can save the output for future use. It can process numerical as well as non-numerical calculations. The term “computer” is derived from the Latin word “compute” which means to calculate</p>

</body>

</html>

 

 

error: Content is protected !!