Last active
January 6, 2016 22:17
-
-
Save jussc/f2c1f23ab23bb241e7a7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <!-- always begin this way--> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport content="width=device-width, initial-scale=1"> | |
| <title>About | |
| </title> | |
| <!--[if lt IE 9]> | |
| <script src="dist/html5shiv.js"></script> | |
| <![endif]--> | |
| <link rel="stylesheet" href="css/normalize.css"> | |
| <link rel="stylesheet" href="css/about_styles.css"> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <div class="header"> | |
| <h1>About Me</h1> | |
| <div class="image"> | |
| <img src="img/kitten.jpg" height="250" width="200" alt="kitten"> | |
| </div> | |
| <div class="intro column"> | |
| <h3>Introduction</h3> | |
| <p>My name is Justin. I'm originally from Vancouver, Canada but am currently living in Los Angeles. | |
| <br><br> | |
| I am a husband, a father of two, an avid sports fan, and a singer/songwriter on the side.</p> | |
| </div> | |
| <div class="skills column"> | |
| <h3>My Skills</h3> | |
| <ul id="skill-list"> | |
| <li>SQL Server</li> | |
| <li>Java</li> | |
| </ul> | |
| </div> | |
| <div class="main-text"> | |
| <h3>My Story</h3> | |
| <p> | |
| I have most of my experience in Customer Service and Supply Chain. Most recently I have been delving in different aspects of Information Technology in hopes of a career change. | |
| <br><br> | |
| I had played around with HTML and CSS back in high school and just recently picked it back up. At this point, I am trying to figure out what is best for my career. | |
| </p> | |
| </div> | |
| </div><!-- end header--> | |
| </div><!-- end container--> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment