site demo
by jamna
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, maximum-scale=1.0"/>
</head>
<body>
<!--wrapper starts-->
<div id="wrapper">
<!--select boxes for select any product starts here-->
<div id="select-product">
<select class="productname">
<option value="Alle mærke">Product list</option>
<option value="">List item 1</option>
<option value="">List item 2</option>
<option value="">List item 3</option>
<option value="">List item 4</option>
<option value="">List item 5</option>
<option value="">List item 6</option>
</select>
<select class="productsize">
<option value="">13"</option>
<option value="">14"</option>
<option value="">15"</option>
<option value="">16"</option>
<option value="">17"</option>
<option value="">18"</option>
<option value="">19" </option>
</select>
<select class="productprice">
<option value="">5.000 - 10.000</option>
<option value="">10.000 - 15.000</option>
<option value="">15.000 - 20.000</option>
<option value="">20.000 - 25.000</option>
<option value="">25.000 - 30.000</option>
<option value="">30.000 - 40.000</option>
<option value="">40.000 - 50.000</option>
</select>
</div>
<!--End of select boxes-->
<!--main product list in wrapper div starts-->
<div id="main-product-area">
<!--Figure starts here-->
<a...
CSS
@charset "utf-8";
/*---------------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; }
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section { display: block; }
body { line-height: 1; }
ol,
ul { list-style: none; }
blockquote,
q { quotes: none; }
blockquote:before,
blockquote:after,
q:before,
q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
/*----------------------------------------------------*/
/* CSS reset ends here*/
/*----------------------------------------------------*/
/*----------------------------------------------------*/
/* styling for body
/*----------------------------------------------------*/
body { color:#2a2a2a; font-family:"Helvetica Neue", Helvetica, sans-serif; }
/*----------------------------------------------------*/
/* styling for header
/*----------------------------------------------------*/
#header { background-image: url("../images/header_bg.jpg"); background-repeat: repeat-x; height: 34px; padding-bottom: 0; padding-top: 10px; text-align: center; }
#buttons { float:left; margin-left: 8px; }
#buttons a { display: block; font-size: 13px; font-weight: bold; height: 30px; text-decoration: none; width: 115px; text-shadow: 0 1px 1px #FFFFFF; color:#2a2a2a; text-align: left; padding-top: 7px; padding-bottom: 7px; float:...