Introduction To CSS
Introduction To CSS
Learning Objectives
• Research training for faculty members
• Objective: To train the faculty members to make publishable papers for
journals and conference presentation.
• Activities:
• Simulation of making publishable papers
• Enhancement in research writing to avoid plagiarism
• Learning the proper way of citing and writing bibliographical entries
• Review of statistical treatment of data
• Create an account in research gate to get more citation
Cascading Style sheets (CSS)
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
CSS is a language that describes the style of an HTML document.
CSS describes how HTML elements should be displayed.
CSS Saves a Lot of
Time and Effort!
OUTPUT
CSS background-color
With CSS, a color is most often specified by:
a valid color name - like "red"
a HEX value - like "#ff0000"
an RGB value - like "rgb(255,0,0)“
• Example The <h1>, <p>, and <div> elements will have different background colors:
CSS background-color
OUTPUT
CSS background-repeat: no-repeat
Showing the background image only once is also specified by
the background-repeat property specifies an image to use as the
background of an element.
OUTPUT
By default, the image is repeated so it covers the entire element.
CSS background-repeat
By background-image property repeats an image both
horizontally and vertically.
OUTPUT
CSS background-repeat: no-repeat
OUTPUT
Showing the background image only once is also specified by
the background-image property repeats an image both horizontally
and vertically.