| 
<!DOCTYPE html>
 <html>
 <title>Simplex</title>
 <meta charset="UTF-8">
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
 <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
 <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
 <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
 <style>
 body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif}
 .w3-bar,h1,button {font-family: "Montserrat", sans-serif}
 .fa-anchor,.fa-coffee {font-size:200px}
 </style>
 <body>
 
 <!-- Navbar -->
 <div class="w3-top">
 <div class="w3-bar w3-red w3-card w3-left-align w3-large">
 <a class="w3-bar-item w3-button w3-hide-medium w3-hide-large w3-right w3-padding-large w3-hover-white w3-large w3-red" href="javascript:void(0);" onclick="myFunction()" title="Toggle Navigation Menu"><i class="fa fa-bars"></i></a>
 <a href="/" class="w3-bar-item w3-button w3-padding-large w3-white">Home</a>
 <a href="/about" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">about</a>
 <a href="/contact" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">contact</a>
 <a href="/user" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">user</a>
 <a href="/about/culture" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">culture</a>
 </div>
 
 <!-- Navbar on small screens -->
 <div id="navDemo" class="w3-bar-block w3-white w3-hide w3-hide-large w3-hide-medium w3-large">
 <a href="/" class="w3-bar-item w3-button w3-padding-large">Home</a>
 <a href="/about" class="w3-bar-item w3-button w3-padding-large">about</a>
 <a href="/contact" class="w3-bar-item w3-button w3-padding-large">contact</a>
 <a href="/about/culture" class="w3-bar-item w3-button w3-padding-large">culture</a>
 </div>
 </div>
 |