.nav-item
<a href="#" class="nav-item">
Default Navigation Button
</a>
a
<a href="#">Default Link</a>
form, .button, button
<form method="post" action="#" id="contact">
<input type="submit" class="button" value="Submit">
<button class="button"> Reset </button>
</form>
form, .form-search
<form method="post" action="#" id="search-initial">
<label for="form-name"> Name: </label>
<input type="text" id="form-name" placeholder="Enter your name here.">
<input type="submit" class="button" value="Submit name">
</form>
h1, h2, h3, h4, h5
<h1>Level one heading</h1>
<h2>Level two heading</h2>
<h3>Level three heading</h3>
<h4>Level four heading</h4>
<h5>Level five heading</h5>
p
<p>
Hello! I am Josh Fernandez - a fourth-year Software Systems student at Simon Fraser University, also pursuing a minor in Interactive Arts and Technology. I want to pursue a career in software engineering and front-end web development.
</p>
Hello! I am Josh Fernandez - a fourth-year Software Systems student at Simon Fraser University, also pursuing a minor in Interactive Arts and Technology. I want to pursue a career in software engineering and front-end web development.
ul
<ul>
<li>One bullet</li>
<li>Two bullets</li>
<li>Three bullets</li>
</ul>
ol
<ol>
<li>One bullet</li>
<li>Two bullets</li>
<li>Three bullets</li>
</ol>
#1240AB;
Active, Focus, and Hover States: #5777C0;
#FF7400;
Active, Focus, and Hover States: #FFAA63;
#009999;
Active, Focus, and Hover States: #46B2B2;
#FFAA00;
Active, Focus, and Hover States: #FFCB63;
#212121;
Active, Focus, and Hover States: #4C4C4C;
#FFFFFF;
Active, Focus, and Hover States: #E8E8E8;
nav, .nav-item
<nav>
<a href="index.html" class="nav-item"> Home </a>
<a href="about.html" class="nav-item"> About Josh </a>
<a href="project1.html" class="nav-item"> Social Networking Project </a>
<a href="project2.html" class="nav-item"> Website Project </a>
<a href="contact.html" class="nav-item"> Contact Josh </a>
</nav>