Basic List

Here is what a basic unordered list would look like when you view it on a web page:
  • This is noticed.
  • So is this.
  • And so is this
Below you will find an example of the code you would use to create the basic list:
<ul>
	<li>This is noticed.</li>
	<li>So is this.</li>
	<li>And so is this</li>
</ul>