<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="4/w3.css">
<body>
<div class="w3-sidebar w3-bar-block w3-black w3-card" style="width:130px">
<h5 class="w3-bar-item">Menu</h5>
<button class="w3-bar-item w3-button tablink" onclick="openLink(event, 'Fade')">Fade</button>
<button class="w3-bar-item w3-button tablink" onclick="openLink(event, 'Left')">Left</button>
<button class="w3-bar-item w3-button tablink" onclick="openLink(event, 'Right')">Right</button>
<button class="w3-bar-item w3-button tablink" onclick="openLink(event, 'Top')">Top</button>
<button class="w3-bar-item w3-button tablink" onclick="openLink(event, 'Bottom')">Bottom</button>
<button class="w3-bar-item w3-button tablink" onclick="openLink(event, 'Zoom')">Zoom</button>
</div>
<div style="margin-left:130px">
<div class="w3-padding">Use any of the w3-animate-classes to fade, zoom or slide in tab content.</div>
<div id="Fade" class="w3-container city w3-animate-opacity" style="display:none">
<h2>Fade in</h2>
<p>London is the capital city of England.</p>
<p>It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
</div>
<div id="Left" class="w3-container city w3-animate-left" style="display:none">
<h2>Slide in from left</h2>
<p>Paris is the capital of France.</p>
<p>The Paris area is one of the largest population centers in Europe, with more than 12 million inhabitants.</p>
</div>
<div id="Top" class="w3-container city w3-animate-top" style="display:none">
<h2>Slide in from top</h2>
<p>Tokyo is the capital of Japan.</p>
<p>It is the center of the Greater Tokyo Area, and the most populous metropolitan area in the world.</p>
</div>