• Home
  • Jobs
  • Courses
  • Certifications
  • Companies
  • Online IDE
  • Login
  • Signup
CSS ( Cascading Style Sheets)
  • CSS Introduction
  • CSS Syntax
  • CSS Selectors
  • How To Add CSS
  • CSS Comments
  • CSS Backgrounds
  • CSS Borders
  • CSS Margins
  • CSS Padding
  • CSS Height - Width
  • CSS Box Model
  • CSS Outline
  • CSS Text
  • CSS Links
  • CSS Lists
  • CSS Tables
  • CSS Display
  • CSS Max-width
  • CSS Position
  • CSS Overflow
  • CSS Float
  • CSS Inline-block
  • CSS Align
  • CSS Combinators
  • CSS Pseudo-classes
  • CSS Pseudo-elements
  • CSS Opacity
  • CSS Navigation Bar
  • CSS Dropdowns
  • CSS Image Gallery
  • CSS Attr Selectors
  • CSS Forms
  • CSS Counters
  • CSS Website Layout
  • CSS !important
  • CSS Rounded Corners
  • CSS Border Images
  • CSS Backgrounds
  • CSS Colors
  • CSS Color Keywords
  • CSS Gradients
  • CSS Radial Gradients
  • CSS Text Effects
  • CSS Web Fonts
  • CSS 2D Transforms
  • CSS 3D Transforms
  • CSS Transitions
  • CSS Animations
  • CSS Tooltip
  • CSS Image Reflection
  • CSS The Object-fit
  • CSS Object-position
  • CSS Button
  • CSS Pagination
  • CSS Multiple Columns
  • CSS User Interface
  • CSS Variables
  • CSS Box-sizing
  • CSS Media Queries
  • CSS Flexbox
  • Home
  • Courses
  • CSS ( Cascading Style Sheets)
  • CSS Introduction

CSS Introduction

Previous Next

Cascading Style Sheets Introduction

  • CSS stands for Cascading Style Sheets
  • CSS describes how HTML elements are to be displayed on screen, paper, or in other media
  • CSS saves a lot of work. It can control the layout of multiple web pages all at once
  • External stylesheets are stored in CSS files

Why Use CSS?

CSS is used to define styles for your web pages, including the design, layout and variations in display for different devices and screen sizes.

<!DOCTYPE html>
<html>
<head>
<style>
body {
  background-color:blue;
}

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

p {
  font-family: arial;
  font-size: 20px;
}
</style>
</head>
<body>

<h1>My First CSS Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
Try it now



CSS Solved A Big Problem

HTML was NEVER intended to contain tags for formatting a web page!

HTML was created to describe the content of a web page, like:

<h1> This is a heading </h1>

<p>This is a paragraph.</p>

When tags like <font>, and color attributes were added to the HTML 3.2 specification, it started a nightmare for web developers. Development of large websites, where fonts and color information were added to every single page, became a long and expensive process.

To solve this problem, the World Wide Web Consortium (W3C) created CSS.

CSS removed the style formatting from the HTML page!



Previous Next
COMPANY
  • About us
  • Careers
  • Contact Us
  • In Press
  • People
Products
  • Features
  • Coding Assessments
  • Psychometric Assessment
  • Aptitude Assessments
  • Tech/Functional Assessments
  • Video Assessment
  • Fluency Assessment
  • Campus
 
  • Learning
  • Campus Recruitment
  • Lateral Recruitment
  • Enterprise
  • Education
  • K 12
  • Government
OTHERS
  • Blog
  • Terms of Services
  • Privacy Policy
  • Refund Policy
  • Mart Category
Partner
  • Partner Login
  • Partner Signup