Lab 3

Question:
Based on previous Lab 02, do applying the Cascading Style Sheet for your webpages as external file.

CSS Code:

<head>
<style>
body {font-family: "Lato", sans-serif;}

.tablink {
    background-color: #555;
    color: white;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 17px;
    width: 25%;
}


.tablink:hover {
    background-color: #777;
}


.tabcontent {
    color: black;
    display: none;
    padding: 40px;
    text-align: center;
}


.boxed {
  border: 1px solid white ;
  background-color: #E5E7E9;
}


#Home {background-color:white;}
#Check-In {background-color:white;}
#TravelInformation {background-color:white;}
#LoginorSignup {background-color:white;}



</style>
</head>

Comments

Popular posts from this blog

Lab 7

Lab 2

Lab 8