Welcome to my Coding Progression page of my portfolio!

This is where you can see what I have learned with coding HTML and CSS over the past two years at STEM School.

 

Grade MasteredCode SyntaxDescription
6th<p>Makes text appear on your web page.
6th <img src="[insert file name here]" alt="[insert image desription here]" style="width:[width in pixels]px; height:[height in pixels]px;"/> After you input a file name and description, if the image is in the right folder, then an image appears on the page (self-closing)
6th<li>Makes a list item inside of either and unordered list or an ordered list.
6th<ul>Makes makes an unordered list (bullet points), and makes a list of the items you put into the list items.
6th<ol>Makes an ordered list (numbered list), and uses the list items you put inside this element.
7thbackground:[background elements];(CSS) This controls the background properties. You can put all your background elements into this one element for more concise code.
7thborder:[background elements];(CSS) This controls the border properties. You can put all your border elements into this one element for more concise code.
7th<div id="[ID]">This makes different sections on your web page.
7th<center>This makes text centered on you web page.
7th<strong>This makes text inside of it appear bold on your page.