HTML headings are titles or subtitles that you want to display on a webpage. HTML headings are defined with the h1 to h6 tags. h1 defines the most important heading. h6 defines the least important heading.
This is an example of Horizontal Rule.
You can change the width of a container using the width CSS property in the declaration.
You can change the height of a container using the height CSS property in the declaration.
You can change the font size of text and headingsusing the font-size CSS property in the declaration.
You can set the background color of a container using the bakground-color CSS property in the declaration. Background colors can be hexadecimal numbers, RGBa numbers, or color names.
You can set the font color of text and headings using the color CSS property in the declaration. Text colors can be hexadecimal numbers, RGB numbers, or color names.
You can set the border properties of any container using CSS. CSS allows you to set the border width, style, and color. Border styles include dotted, dashed, solid, double, groove, ridge, inset, and outset. You can set the entire border or just one side of the container (top, bottom, left, right), using CSS properties such as border-right in the declaration. This div container is styled using the double border style.
This div tag is floating to the right
This div tag has a margin of 20px set on all four sides. You can set the margin of the entire container using the margin CSS property in the declaration or set the top, bottom, right, left individually as well. The margin properties is used to create space around elements, outside of any defined borders.
Padding can be added to any element. This container has a padding of 20px added to it. The padding property is used to generate space around an element's content, inside of the defined border.
To use Google fonts you have to link to the Google font style sheet or using the @import command in your CSS style sheet. The font in this paragraph is a Google font using the link in head content to link Google's style sheet.
Georgia, "Palatino Type", "Book Antiqua", Palatino, "Times New Roman", Times
Arial, Helvetica, "Arial Black", Gadget, "Comic Sans MS", Cursive, Impact, Charcoal, "Lucida Sans Unicode", "Lucida Grande", Tahoma, Geneva, "Trebuchet MS", Verdana
"Courier New", Courier, "Lucida Console", Monaco
Use the text-decoration:underline in the declaration
Use the font-weight:bold to make the text bold.
Use the font-style:italic or normal or oblique
Use the font-variant:small-caps or initial
Use the text-transform:capitalize or uppercase, lowercase, initial, or inherit
W3Schools (2020). HTML Tutorials. Retrieved from W3Schools. Website: https://www.w3schools.com/html/default.asp
W3Schools (2020). CSS Tutorials. Retrieved from W3Schools. Website: https://www.w3schools.com/css/default.asp