diff options
-rw-r--r-- | about.html | 36 | ||||
-rw-r--r-- | index.html | 36 |
2 files changed, 56 insertions, 16 deletions
diff --git a/about.html b/about.html new file mode 100644 index 0000000..f9821ee --- /dev/null +++ b/about.html @@ -0,0 +1,36 @@ +<!DOCTYPE html> +<html> + +<head> + + <link rel="stylesheet" href="style.css"/> + <script src="app.js"></script> + +</head> + +<body> + + <h1>About Me</h1> + + <p> + My name is Nick Chopper. I am currently a Data Analyst for an Industrial Engineering department in a distribution environment. + I am learning about other programming languages and am very interested in Data Science. I have professionially done some linear regression modeling within our team and I would like to expand that part of my career. + Learing about Machine Learning and other techniques is very interesting and I would like to find applications for the Neural Network library I have build in R. I will likely develop one for Python and well when I get to it. + <br> + Right now I am self teching on YouTube tutorials and taking certifications as I can. I am eyeing the Advanced Data Analytics course by Google as a potential next step. + </p> + + <h2>Links</h2> + <ul> + <li> + chess.com <a href="https://www.chess.com/member/tinwoodman92">chess.com/member/tinwoodman92</a> + </li> + <li> + GitHub <a href="https://github.com/TinWoodman92">github.com/TinWoodman92</a> + </li> + </ul> + + <a href="index.html">Home Page</a> + +</body> +</html>
\ No newline at end of file @@ -2,24 +2,28 @@ <html> <head> -<link rel="stylesheet" href="style.css"/> -<body> + <link rel="stylesheet" href="style.css"/> + <script src="app.js"></script> </head> +<body> + + <h1>Nick Chopper</h1> + <p> + I do not know what this website will be long term. I am just developing this for experience and portential exposure to recruiters. + </p> -<h1>Nick Chopper</h1> -<p> - I do not know what this website will be long term. I am just developing this for experience and portential exposure to recruiters. -</p> + <a href="about.html">About Me</a> + + <h2>Links</h2> + <ul> + <li> + chess.com <a href="https://www.chess.com/member/tinwoodman92">chess.com/member/tinwoodman92</a> + </li> + <li> + GitHub <a href="https://github.com/TinWoodman92">github.com/TinWoodman92</a> + </li> + </ul> -<h2>Links</h2> -<ul> - <li> - chess.com <a href="https://www.chess.com/member/tinwoodman92">chess.com/member/tinwoodman92</a> - </li> - <li> - GitHub <a href="https://github.com/TinWoodman92">github.com/TinWoodman92</a> - </li> -</ul> </body> -<script src="app.js"></script> + </html>
\ No newline at end of file |