h1 - h6 tags are used to define titles and subtitles on a webpage. The h1 tag defines the most important heading/title on the page. The h6 tags defines the least important title normally a subtitle or even caption on a page.
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 headings using the font-size CSS property in the declaration.
You can set the background color of a container using the background-color CSS property in the declaration. Background colors can be hexidecimal numbers, RGB 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 hexidecimal 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.
Container floating to the right
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 Linotype", "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", Helvetica,Verdana, Geneva
"Courier New", Courier,"Lucida Console", Monaco
Use the text-decoration:underline in the declaration
Use the font-weight:bold to make text bold
Use the font-style:italic or normal or oblique
Use the font-variant:small-caps or initial, or inherit
Use the text-transform:capitalize or uppercase, lowercase, initial, or inherit
W3Schools (2020). other sides hopefully Probably not enough text to fill? 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.as