Posts

Showing posts from October, 2017

Lab 4

Image
Question: Based on pdf file of JavaScript Tutorial. Starting page 10 "Hello World"  codes, write up the examples scripts given to you, test them and save. Every topic need to have one script such as Topic 5 till Topic 13.  Output:

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>