![](assets/images/ElevenNote.jpg)
My whole life, I have identified problems and tried to solve them. I feel a great sense of accomplishment from making things better or fixing things that are broken.
I have always had an interest in software and am passionate about working with customers to offer creative ways to solve their problems or provide a product that will increase efficiency in some capacity.
Eleven Fifty Academy provides a vehicle to prepare me for a career in the software industry. The .NET ALP course has provided many aspects including: Languages (HTML, CSS and C#), Repositories, Frameworks (.NET, ASP and Xamarin), writing DRY code that isn't resource expensive and utilizing patterns to make coding more modular and global.
HTML Code used to display education logos and add hyperlink
<div class="col-sm-4">
<div class="thumbnail">
<div class="img4">
<a href="https://elevenfifty.org/" target="_blank">
<span>
</span>
</a>
</div>
<div class="caption">
<h3 class="text-center">Education</h3>
<h4 class="text1" position="text-left">
<ul>
<li>ElevenFifty Academy, .NET ALP Program</li>
<li>Purdue University, BS, CIMT</li>
<li>ITT Technical Institute, EET</li>
</ul>
</h4>
</div>
</div>
</div>
CSS code to add a hyperlink to the ElevenFifty Picture
.about .img4 {
background-image: url("../images/schools.png");
height: 25em;
background-size: cover;
width: 100%;
background-position: 20% 40%;
border: 1px solid black;
}
.about .img4 a {
display: block;
height: 25em;
width: 100%;
outline: none;
border: 1px solid black;
}
.about .img4 a span{
display: none;
}
Code showing a for and foreach loop iterating an array
//Array of days with for loop
string[] days = new string[7] { "Monday", "Tuesday", "Wednesday", "Thursday",
"Friday", "Saturday", "Sunday" };
Console.WriteLine("The days of the week are:");
for (int i = 0; i <= 6; i++)
{
Console.WriteLine(days[i]);
}
//Array of days with foreach loop
string[] days = new string[7] { "Monday", "Tuesday", "Wednesday", "Thursday",
"Friday", "Saturday", "Sunday" };
Console.WriteLine("The days of the week are:");
foreach (string day in days)
{
Console.WriteLine(day);
}