Created
May 4, 2016 15:05
-
-
Save dj-amadeous/f9b38e86d3b80a2f57c98531d4a8bdbb to your computer and use it in GitHub Desktop.
This file contains 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
<nav class='navbar navbar-default navbar-fixed-top'> | |
<div class="navlink container" id='mynavbar'> | |
<ul class='nav navbar-nav navbar-right'> | |
<button type='button' class='btn btn-default navbar-bth'><li>About</li></button> | |
<button type='button' class='btn btn-default navbar-bth'><li>Portfolio</li></button> | |
<button type='button' class='btn btn-default navbar-bth'><li>Contact</li></button> | |
</div> | |
</nav> | |
<div class='about-me container'> | |
<img class='small-image pull-right' src='http://i.imgur.com/EQS76FV.jpg'> | |
<p>I'm a current computer science student at UTA. I really enjoy math, puzzles, coding and chess</p> | |
</div> | |
css: | |
.navbar{ | |
background-color: purple; | |
color: white; | |
} | |
.small-image{ | |
width: 300px; | |
padding: 70px; | |
border-radius: 50%; | |
} | |
.navlink{ | |
color: white; | |
} | |
.about-me { | |
background-color: grey; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment