Skip to content

Instantly share code, notes, and snippets.

@topouzid
Created May 22, 2015 14:11
Show Gist options
  • Save topouzid/a49062c912b0dce4b7fe to your computer and use it in GitHub Desktop.
Save topouzid/a49062c912b0dce4b7fe to your computer and use it in GitHub Desktop.
JS Bin Simple html website, Coffee House // source http://jsbin.com/fesiza
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Simple html website, Coffee House">
<meta charset="utf-8">
<title>JS Bin</title>
<style id="jsbin-css">
body{
background: #FFFFFF;
font-family: 'Abel', sans-serif;
font-size: 20px;
color: #3b3b3b;
}
h1, h2 {
font-family: "impact";
font-weight: normal;
text-transform: uppercase;
margin: 0;
padding: 0;
color: #111111;
}
#logo h1{
line-height: 150px;
letter-spacing: 3px;
font-size: 7em;
}
#header-page {
overflow: hidden;
height= 600px;
}
#header {
overflow: hidden;
width: 1000px;
height: 150px;
margin: 0 auto;
padding: 0px 0px;
}
#banner{
margin: 0px auto;
width: 1000px;
height: 440px;
}
#threeColumns{
overflow: hidden;
width: 1000px;
margin: 0px auto;
padding: 30px 0px;
}
img {
width: 1000px;
}
#threeColumns h2{
padding: 0px 0px 20px 0px;
font-size: 40px;
}
#threeColumns #column1{
float: left;
width: 300px;
margin-right: 50px;
}
#threeColumns #column2{
float: left;
width: 300px;
}
#threeColumns #column3{
float: right;
width: 300px;
}
</style>
</head>
<body>
<div id="page">
<div id="header-page">
<div id="header" class="container">
<div id="logo">
<h1>Coffee house</h1>
</div>
</div>
<div id="banner">
<div class="content">
<img src="http://www.publicdomainpictures.net/download-picture.php?adresar=20000&soubor=koffee.jpg" />
</div>
</div>
</div>
<div id="threeColumns">
<div id="column1">
<h2>Lorem ipsum</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </p>
</div>
<div id="column2">
<h2>Ut enim</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </p>
</div>
<div id="column3">
<h2>Duis aute</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </p>
</div>
</div>
</div>
<script id="jsbin-source-css" type="text/css">body{
background: #FFFFFF;
font-family: 'Abel', sans-serif;
font-size: 20px;
color: #3b3b3b;
}
h1, h2 {
font-family: "impact";
font-weight: normal;
text-transform: uppercase;
margin: 0;
padding: 0;
color: #111111;
}
#logo h1{
line-height: 150px;
letter-spacing: 3px;
font-size: 7em;
}
#header-page {
overflow: hidden;
height= 600px;
}
#header {
overflow: hidden;
width: 1000px;
height: 150px;
margin: 0 auto;
padding: 0px 0px;
}
#banner{
margin: 0px auto;
width: 1000px;
height: 440px;
}
#threeColumns{
overflow: hidden;
width: 1000px;
margin: 0px auto;
padding: 30px 0px;
}
img {
width: 1000px;
}
#threeColumns h2{
padding: 0px 0px 20px 0px;
font-size: 40px;
}
#threeColumns #column1{
float: left;
width: 300px;
margin-right: 50px;
}
#threeColumns #column2{
float: left;
width: 300px;
}
#threeColumns #column3{
float: right;
width: 300px;
}</script>
</body>
</html>
body{
background: #FFFFFF;
font-family: 'Abel', sans-serif;
font-size: 20px;
color: #3b3b3b;
}
h1, h2 {
font-family: "impact";
font-weight: normal;
text-transform: uppercase;
margin: 0;
padding: 0;
color: #111111;
}
#logo h1{
line-height: 150px;
letter-spacing: 3px;
font-size: 7em;
}
#header-page {
overflow: hidden;
height= 600px;
}
#header {
overflow: hidden;
width: 1000px;
height: 150px;
margin: 0 auto;
padding: 0px 0px;
}
#banner{
margin: 0px auto;
width: 1000px;
height: 440px;
}
#threeColumns{
overflow: hidden;
width: 1000px;
margin: 0px auto;
padding: 30px 0px;
}
img {
width: 1000px;
}
#threeColumns h2{
padding: 0px 0px 20px 0px;
font-size: 40px;
}
#threeColumns #column1{
float: left;
width: 300px;
margin-right: 50px;
}
#threeColumns #column2{
float: left;
width: 300px;
}
#threeColumns #column3{
float: right;
width: 300px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment