CSS Complete Course

Chapter 1 : Introduction to CSS (Cascading Style Sheet

HTML Example

<!DOCTYPE html>
<html>

<head>

<title>CSS Tutorial</title>

<link rel="stylesheet" href="style.css">

</head>

<body>

<h1>Welcome to GWAL NET</h1>

<p>This is my first CSS page.</p>

</body>

</html>

CSS Example

body{

font-family:Arial;

background:#f5f5f5;

margin:40px;

}

h1{

color:#2563eb;

}

p{

font-size:18px;

color:#444;

}