CSS (Cascading Style Sheets) is design language must important for create good website design.
Why CSS language very important?
- Create stunning website
- Become a professional web designer
- Control website design
- Help to learning other languages
Benefits of CSS language study.
- Save our time
- Help to run our page more faster
- Maintenance very easy
- Superior styles to HTML
- Multiple device compatibility
- Global web standards
Now we are checking the Hello World program in CSS.
<html>
<head>
<title>Coding Request</title>
<style>
h1{ color:#0000FF;}
</style>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
Coding view in Notepad++
Noteped++ Download link here https://notepad-plus-plus.org/downloads/Image 1
Some Coding meaning here
<title>..........</title> - Your title place
<style>..........</style> - cascading style sheets
<h1>............</h1> - Heading place
Result view in browser
Image 2
C:/Users/MUNZIR/Document/hello.html this is our programme file path. You need more information check the practical video.