For this tutorial you need to know :
- HTML
- CSS
FIRST STEP:
Lets start with our HTML code. Open your notepad or dreamweaver and paste this code below.
<html>
<head>
<title> Working </title>
<style type="text/css">
body{
background-color:#e8e8e8;
background: url(images/bg.png);
}
div#main{
background:#ffffff;
width: 900px;
height: 1582px;
box-shadow: 0 0 3px 3px #888;
}
div#cover{
background: url(images/head.jpg);
height:506;
border: 4px solid #ffffff;
}
div#home{
background:url(images/home.jpg);
height:1032px;
margin-top:508px;
}
div#down{
background: url(images/down.jpg);
width:892px;
height:38;
margin-top:90px;
margin-left:0px;
}
.button-link {
font-family:Arial;
text-decoration:none;
padding: 10px 15px;
background: #E4287C;
color: #FFF;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
border: solid 2px #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
-webkit-transition-duration: 0.2s;
-moz-transition-duration: 0.2s;
transition-duration: 0.2s;
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
.button-link:hover {
background: #b85768;
border: solid 1px #ffffff;
text-decoration: none;
}
.button-link:active {
-webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
-moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
background: #b85768;
border: solid 1px #ffffff;
}
</style>
</head>
<body>
<center>
<div id="main">
<div id="cover">
<div id="home">
<a class="button-link" href="Chapters/Episodes/1.html" style="vertical-align:-935px;"> Read Manga Now!</a>
<div id="down">
</div>
</center>
</body>
</html>
save this file as index.html . Then create a new folder *name it any name you want, for example in my case, I name my folder as Working.