Internal css are created usin Css preference and to make it function u need to learn hex colors eg 008000 dats green u cn use the word or hex code nw leme start internal css structure i created with many css styles dat has there own function in its own way.. Like padding, background-color, margin, text-align , font-size or font-weight etc i wil explain the above ones listed,
padding: this means enlargin the div arena/border.
background-color this means the background color of the class if applied.
margin it means shiftin the class border eg u cn use margin-left, margin-right u add the maximum border shiftin eg margin-right: 5px;
font-size this mean increasin text size px format 50px eg font-size: 40px;
font-weight this function and the font size are xame the önly different is dat font size works in number enlargin eg 5px, 50px, 35px etc while font-weight works in text format eg bold, small etc.. In work font-weight: bold;
text-align the function means placin the text in any format or alignment u wnt, eg in left, right and center alignment eg text-align: center;
BASICS OF CSS
Inorder fr internal css to work dis functions must be included ; and : ; means the tag has been closed while : means open tag.
WARNING: We Dnt Use Normal HTML Codes in css eg <b></b>, <font color="red"></font> instead of the above we use dis to replace them in css <b></b> replace with font-weight: bold; while <font color="red"></font> replace with color: red;
HOW TO PUT INTERNAL CSS IN FUNCTION AND HOW TO GET THE CODE:
We use dis style script to me it function well eg <style> to code u hav been thought abt Css peference above with few functions nw let create an internal css with black background, text white, center alignment and normal paddin
NOTE: the div class in the above internal css is mido
Thats All!