<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sample HTML Page</title>
<meta name="description" content="Description of the page">
<meta name="keywords" content="Sample, HTML">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<h2>Cities</h2>
</header>
<section>
<ul>
<li><a href="#london">London</a></li>
<li><a href="#paris">Paris</a></li>
<li><a href="#tokyo">Tokyo</a></li>
</ul>
<article>
<h1 id="london">London</h1>
<p>London, the capital of England and the United Kingdom, is a 21st-century city with history stretching back to
Roman times.</p>
<h1 id="paris">Paris</h1>
<p>Paris, France's capital, is a major European city and a global center for art, fashion, gastronomy and culture.
Its 19th-century cityscape is crisscrossed by wide boulevards and the River Seine.</p>
<h1 id="tokyo">Tokyo</h1>
<p>Tokyo, Japan’s busy capital, mixes the ultramodern and the traditional, from neon-lit skyscrapers to historic
temples. The opulent Meiji Shinto Shrine is known for its towering gate and surrounding woods.</p>
</article>
</section>
</body>
</html>