UNIT I WEBSITE BASICS, HTML 5, CSS 3, WEB 2.0
1.11 Colors ,Shadows,Text, Transformations,Transitions,Animations,Bootstrap Framework The following explains how to use colors, shadows, text utilities, transformations, transitions, animations , and the Bootstrap framework in web technologies, with examples primarily using CSS and Bootstrap. CSS Concepts Cascading Style Sheets (CSS) provides core functionalities for styling web elements. Concept Description Example (CSS) Colors Used for foreground (text) and background colors. color: blue; background-color: #fff; Shadows Adds visual depth to text or box elements. box-shadow: 2px 2px 5px rgba(0,0,0,0.3); Text Controls typography, alignment, capitalization, etc.. text-align: center; text-transform: uppercase; font-family: sans-serif; Transformations Modifies the position, rotation, scale, or skew of an element in 2D or 3D space. transform: rotate(45deg); or transform: scale(1.1); Transitions Creates smooth, animated changes to CSS ...