Throughout working on my project I think I created a simple clean and easily customizable gallery.

<html>
<head>
<title> Singapore - Home </title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<style>
*  
{
  margin: 0;
  padding: 0;
}
body
{
  background: url('woodbackground.jpg');
  background-size: cover;
  min-height: 100%;
  min-width: 100%;
  position: relative;
  top: 0; bottom: 0; left: 0; right: 0;
}

#container 
{
  width: 1175px; 
  margin: auto;
}

h1 
{
  font: bold 65px Helvetica, Arial, Sans-serif;
  text-align: center; color: #eee;
  text-shadow: 0px 2px 6px #333;
  position: relative;
  top: 60px;

}

h3
{
  font: 25px Helvetica, Arial, Sans-serif; 
  text-align: center; 
  color: #eee;
  text-shadow: 0px 2px 6px #333;
  position: relative;
  top: 80px;
}


ul#gallery
{
  list-style: none;
  display: inline;
  position: relative;
  top: 175px;
}

ul#gallery li a
{
  float: left;
  padding: 10px 10px 25px 10px;
  background-color: #eee;
  border: 1px solid #fff;
  -moz-box-shadow: 0px 2px 15px #333;
  position: relative;
  margin: 10px;
  text-decoration: none;
}

ul#gallery li a:hover
{
  position: relative;
  top: -15px;
}

ul#gallery li a img
{
  height: 150px;
  width: 250px;
}


ul#gallery li a p
{
  margin-top: 25px;
  text-align: center;
  color: #000;
  font: Helvetica, Arial, Sans-serif;
  text-decoration: none;
  font-size: 20px;
}
</style>
<body>

<div id="container">
  <h1> Singapore </h1>
     <h3><i> Singapore is the worlds first machine that works </i>- Lee Kuan Yew </h3>
<ul id="gallery">
  <li><a href="#"> <img src="gallery.jpg" alt="gallery" /> <p> Gallery </p> </a>
  </li>
  <li><a href="#"> <img src="facts.jpg" alt="facts" /> <p> Facts </p></a>
  </li>
  <li><a href="#"> <img src="tour.jpg" alt="tour" /> <p> Tour </p></a>
  </li>
  <li><a href="#"> <img src="author.jpg" alt="author" /> <p> Author </p> </a>
  </li>
</ul>
</div>


</body>
<html>

You can also rotate the picture if you make seperate classes, z-indexs and moz-box-... Enjoy! If you want to look at my website it is http://spencedesign.netau.net/singaporehome.html

Member Avatar for LastMitch

@jspence29

The website is nice. Wish I could travel there some day.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.