/* This is the code to make my website have a border at the top saying "Home" and "About"*/


#My_ID {
    background-color:rgb(100, 100, 100);
    position: fixed;
    top: 0%;
    padding: 1em;
    border:1px;
    margin-top: 0;
    width:100%;
    border-color: rgb(200, 200, 5);
    border-width: 4px;
    border-style: solid;

}

.funny {
    background-color: rgb(0, 0, 255);
}

.funny:hover {
    background-color: rgb(255, 0, 0);
}
/*I add jokes into html to make it .funny*/
/*Why did the chicken cross the road? To get to the other side! Gedit?*/
/* I didn't write this in Gedit by the way. I wrote it Microsoft Visual Studio*/

