<html lang="en">
<head>
<title>Ukrainian</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
  box-sizing: border-box;
}
/* Style the body */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}
/* Header/logo Title */
.header {
  padding: 20px;
  text-align: center;
  background: #0057b7;
  color: white;
}
/* Increase the font size of the heading */
.header h1 {
  font-size: 40px;
}
.header a {
  text-decoration: none;
  color: #ffd700;
}
.header a:hover {
  color: white;
}
/* Sticky navbar - toggles between relative and fixed, depending on the scroll position. It is positioned relative until a given offset position is met in the viewport - then it "sticks" in place (like position:fixed). The sticky value is not supported in IE or Edge 15 and earlier versions. However, for these versions the navbar will inherit default position */
.navbar {
  overflow: hidden;
  background-color: #333;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}
/* Style the navigation bar links */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}
/* Right-aligned link */
.navbar a.right {
  float: right;
}
/* Change color on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}
/* Active/current link */
.navbar a.active {
  background-color: #666;
  color: white;
}
/* Column container */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
}
/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  background-color: #ffd700;
  padding: 20px;
}
.side a {
  text-decoration: none;
  color: #AA6666;
}
.side a:hover {
  color: black;
}
/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  background-color: white;
  padding: 20px;
}
.main a {
  text-decoration: none;
  color: #AA6666;
}
.main a:hover {
  color: black;
}
/* Footer */
.footer {
  padding: 10px;
  text-align: center;
  background: #ddd;
}
.footer a {
  text-decoration: none;
  color: #AA6666;
}
.footer a:hover {
  color: black;
}
/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
  }
}
/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}
</style>
</head>
<body>
<div class="header">
<h1>
<a href="/u.htm" style="text-decoration: none">U</a>
<a href="/k.htm" style="text-decoration: none">k</a>
<a href="/r.htm" style="text-decoration: none">r</a>
<a href="/a.htm" style="text-decoration: none">a</a>
<a href="/i.htm" style="text-decoration: none">i</a>
<a href="/n.htm" style="text-decoration: none">n</a>
<a href="/e.htm" style="text-decoration: none">e</a>
</h1>  
</div>
<div class="navbar">
  <a href="/freecity">Home</a>
  <a href="https://twitter.com/Ukraine">Twitter</a>
  <a href="/ukrainian" class="active">Ukrainian</a>
  <a href="/qorahongkong">Qora Hong Kong</a>
  <a href="/index/blog.html?blogname=okchai" class="right">okchai blog</a>
</div>
<div class="row">
  <div class="side">
  <h3>Free Ukraine</h2>
  <br>FreeCity support Free Ukraine.
  <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
    
  </div>
  <div class="main">
        
  
    
    
  </div>
</div>
<div class="footer">
  <h4>For freedom, a FreeCity page at Qora Blockchain</h4>
</div>
</body>
</html>