<!DOCTYPE html>
<html lang="en">
<head>
<title>CSS Template</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
/* Style the header */
header {
background-color: #666;
padding: 30px;
text-align: center;
font-size: 35px;
color: white;
}
/* Create two columns/boxes that floats next to each other */
nav {
float: left;
width: 30%;
height: 300px; /* only for demonstration, should be removed */
background: #ccc;
padding: 20px;
}
/* Style the list inside the menu */
nav ul {
list-style-type: none;
padding: 0;
}
article {
float: left;
padding: 20px;
width: 70%;
background-color: #f1f1f1;
height: 300px; /* only for demonstration, should be removed */
}
/* Clear floats after the columns */
section::after {
content: "";
display: table;
clear: both;
}
/* Style the footer */
footer {
background-color: #777;
padding: 10px;
text-align: center;
color: white;
}
/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 600px) {
nav, article {
width: 100%;
height: auto;
}
}
</style>
</head>
<body>
<h2>CSS Layout Float</h2>
<p>در این مثال، ما یک هدر، دو ستون/باکس و یک پاورقی ایجاد کردهایم. در صفحه های کوچکتر، ستون ها روی هم قرار می گیرند.</p>
<header>
<h2>شهر ها</h2>
</header>
<section>
<nav>
<ul>
<li><a href="#">لندن</a></li>
<li><a href="#">پاریس</a></li>
<li><a href="#">تکیو</a></li>
</ul>
</nav>
<article>
<h1>لندن</h1>
<p>لندن پایتخت انگلیس است</p>
<p>لندن که بر روی رودخانه تیمز قرار دارد برای دو هزار سال یک سکونتگاه بزرگ بوده است</p>
</article>
</section>
<footer>
<p>(پاورقی)Footer</p>
</footer>
</body>
</html>