Skip to content

TryConor/IT1000PROJECT

Repository files navigation

Conor McLaughlin

PICTURE

The purpose of this webpage is to introduce you, the reader, to me the student!

A little bit about me

My name is Conor McLaughlin and I am a sophmore currently enrolled at the University of Missouri Columbia. I am studying Information Technology within their engineering program. I am an active member of the Mizzou Engineering Student Council and I love staying active and participating in class.


If someone were to ask me what my favorite things about Mizzou were I would give them a list.

  • Extracurricular Activities
  • The Recreational Center
  • The Lafferre Engineering Building
  • The food options on campus
  • The Transportation on and off campus
  • How close everything is together

If you would like to share this site with someone else please visit GitHub

Please click the following link(s) if you would like to view additional markdown pages

View README

View Goals

View Contact Me

View More Example Code

View Photo Library

Below is a small selection of my favorite websites

Here is an example of some of the work I have completed in this class

//function fizzbuzz() {
    var display = document.getElementById('display');
    var displayHTML = "";
    for (i = 1; i <= 100; i++) {
        if (i % 3 == 0 && i % 5 == 0) {
            //displayHTML += "<p>FizzBuzz</p>";
        } else if (i % 3 == 0) {
            displayHTML += "<p>Fizz</p>";
        } else if (i % 5 == 0) {
            //displayHTML += "<p>Buzz</p>";
        } else {
            displayHTML += "<p>" + i + "</p>";
        }
    }
}

	display.innerHTML = displayHTML;
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published