Third Post - CSS

Aug 28th 2020 by Viraj Nimbalkar

Cascading Style Sheets

is a style sheet language used for describing the presentation of a document written in a markup language like HTML. CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript.

CSS describes how HTML elements are to be displayed on screen, paper, or in other media. It alongside with styling, It can also postition, change attribute and animate the selectors using their classname, id or tag name.

CSS is designed to enable the separation of presentation and content, including layout, colors, and fonts. This separation can improve content accessibility, provide more flexibility and control in the specification of presentation characteristics, enable multiple web pages to share formatting by specifying the relevant CSS in a separate .css file which reduces complexity and repetition in the structural content as well as enabling the .css file to be cached to improve the page load speed between the pages that share the file and its formatting.

Example:

body

{
  background-color: lightblue;
}

h1

{
  color: white;
  text-align: center;
}

p

{
  font-family: verdana;
  font-size: 20px;
}

To know more visit: https://www.w3schools.com/css/css_intro.asp

Share this post

Viraj Nimbalkar

I am a Web designer / developer based in Pune, Maharashtra, India. Also, I am a Network and Security student who is looking forward to improve his skills in ethical hacking and other cybersecurity domains.

Newsletter