style

style
HTML style Element
The HTML <style> element is used to specify in-document CSS definitions that affect all elements by type, or by the 'class' and 'id' core attributes of the elements in your document.

HTML CODE EXAMPLE
<style type="text/css">
#my_p1 {font-size:20px;}
#my_p2 {font-size:12px;}
</style>
<p id="my_p1">This is some content...</p>
<p id="my_p2">This is some content...</p>
 
This is some content...
This is some content...

Related Posts :

  • title title HTML title Element The HTML <title> element is used to relate the title of the web … Read More...
  • u u HTML u Element The HTML <u> offset text element is used to apply an underline format to… Read More...
  • tr tr HTML tr Element The HTML <tr> table row element is used to start a new row of either &… Read More...
  • track track HTML track Element NOTE: This new element is HTML5 and will be a standardized element in … Read More...
  • ul ul HTML ul Element The HTML <ul> unordered list element is used to render a list of <l… Read More...

0 Response to "style"

Post a Comment