<!DOCTYPE html>
<html lang="uk">
<head><meta http-equiv="content-security-policy" content="script-src 'none'">
<title>CSS Шаблон</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>
</head>
<body>
<h2>CSS Макет Flexbox</h2>
<p>В цьому прикладі ми створили заголовок, два стовпця / поля і нижній колонтитул. На невеликих екранах стовпці будуть накладатися один на одного.</p>
<p>Змініть розмір вікна браузера, щоб побачити ефект адаптивності.</p>
<p><b>Примітка:</b> Flexbox не підтримується в Internet Explorer 10 і більш ранніх версіях.</p>
<header>
<h2>Cities</h2>
</header>
<section>
<nav>
<ul>
<li><a href="#">London</a></li>
<li><a href="#">Paris</a></li>
<li><a href="#">Tokyo</a></li>
</ul>
</nav>
<article>
<h1>London</h1>
<p>London is the capital city of England. It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
<p>Standing on the River Thames, London has been a major settlement for two millennia, its history going back to its founding by the Romans, who named it Londinium.</p>
</article>
</section>
<footer>
<p>Footer</p>
</footer>
</body>
</html>