Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
    <div class="wrap">
        <!-- Block Header -->
        <header class="page-header">
            <nav class="navigation">
                <ul>
                    <li><a href="#">home</a></li>
                    <li><a href="#">portfolio</a></li>
                    <li><a href="#">about me</a></li>
                    <li><a href="#">contact</a></li>
                </ul>
            </nav>
        </header>
        <!-- Block Content -->
        <div class="page-content">
            <div class="content">
                <p>Block Content</p>
            </div>
        </div>
        <!-- Block Footer -->
        <footer class="page-footer">
            <div class="content">
                <p>Block Footer</p>
            </div>
        </footer>
    </div>
</body>
</html>
 
/*Сперва сбросим все отступы*/
* {
    margin: 0;
    padding: 0;
}
html,
body {
    height: 100%;
}
body {
    background-color: #fff;
}
/*!-- Block Container --*/
.wrap {
    background-color: #fff;
    min-height: 100%;
    min-width: 960px;
    position: relative;
}
/*!-- Block Header --*/
.page-header {
    height: 688px;
    background-color: #f6f2f2;
}
.navigation {
    background-color: #313030;
    width: 960px;
    height: 89px;
    margin: 30px auto;
}
.navigation ul {
    text-align: center;
    list-style: none;
    margin-top: 30px;
}
.navigation li {
    display: inline-block;
}
.navigation li a {
    text-decoration: none;
    text-transform: uppercase;
    font: bold 14px/24px "Open Sans";
    color: #e0e0e0;
}
/*!-- Block Content --*/
.page-content {
    padding-bottom: 50px;
}
/*!-- Block Footer --*/
.page-footer {
    height: 50px;
    background-color: #ddd;
    position: absolute;
    bottom: 0;
    width: 100%;
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers