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>
#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...
0 Response to "style"
Post a Comment