AN ARTICLE, WHAT I LEARNT AT BLOCKFUSE.
we completed everything about HTML at the end of January and started,css.Therefore, in this article, i will be writing about the basics of css.
css means (cascading style sheets)
it is a language used to style and design web pages written in HTML.
what css does
css control how a website looks. it is used to change:
. colors
. fonts
. sizes
. layout and positioning
. spacing and alignment
without css a website will look plain and unattractive.
css can be written using inline styling, internal styling, and external styling.
inline styling is when css is written directly inside an HTML tag using the style attribute.
internal styling is when css is written inside the <style> tag in the <head> section of an HTML document.
External styling is when css is written in a separate css file and linked to the HTML file.