Adding style to gallery
This post continues from previous blog where we created online gallery website. In this post, we will add style to our pages. For this we will be using cascading styling sheet or CSS for short. The CSS codes are written inside notepad. Write the code written below in blank notepad (don't copy and paste) and save it as style.css in gallery folder. a{ color: white; background-color:gray; padding: 15px; text-decoration: none; } a:hover{ background-color:blue; } Don't forget to link this style sheet to your page. In home....