The tag is used for declaring style rules within an HTML document. This style tag <style> is used to style all sorts of all aspects of our web page such as fonts, sizes, and layouts.
Using <style>to apply a simple style sheet to an HTML document
<style>
h1 {color:red;}
p {color:blue;}
</style>
Aligning all paragraphs with the right side of the page.
p {
text-align: right;
}
<style>
<style> tags.<style> tag must be located between the <head></head> tags.For more information, see http://www.w3schools.com/tags/tag_style.asp
Found a bug in the documentation? Let us know at documentation@code.org