Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<body>
<div class="w3-container">
  <h2>Navigation Bars</h2>
  <p>The <strong>w3-bar</strong> class is a container for displaying HTML elements horizontally.</p>
  <p>The <strong>w3-bar-item</strong> class defines the container elements.</p>
  <p>It it a perfect tool for creating navigation bars:</p>
</div>
<div class="w3-bar w3-black">
  <a class="w3-bar-item w3-button" href="#">Home</a>
  <a class="w3-bar-item w3-button" href="#">Link 1</a>
  <a class="w3-bar-item w3-button" href="#">Link 2</a>
  <a class="w3-bar-item w3-button" href="#">Link 3</a>
</div>
<div class="w3-container">
  <p>The <strong>w3-mobile</strong> class defines responsive elements.</p>
  <p>Resize the browser window to see the effect:</p>
</div>
<div class="w3-bar w3-black">
  <a class="w3-bar-item w3-button w3-mobile" href="#">Home</a>
  <a class="w3-bar-item w3-button w3-mobile" href="#">Link 1</a>
  <a class="w3-bar-item w3-button w3-mobile" href="#">Link 2</a>
  <a class="w3-bar-item w3-button w3-mobile" href="#">Link 3</a>
</div>
</body>
</html>