Skip to main content

Posts

Showing posts from April, 2021

CSS

  CSS – CASCADING STYLE SHEET Presentation Layer HTML ELEMENT / CSS RULE Property + Value = Rule background-color : red; CSS – CaseSensitive COMMENT       /*     */     HOW TO USE CSS Inline CSS < p   style = " color:brown;font-size:30px; " > Lorem ipsum dolor sit amet consectetur  adipisicing elit. Omnis tempore reprehenderit a dignissimos aperiam accusamus  numquam, eum recusandae, fugiat suscipit officia in asperiores quae aspernatur  iure sit, facere harum ad? </ p > </ body >    Internal CSS < style >          body {              background-color : aquamarine ;         }    ...