<html lang="en">
    <head>
    <title>CEQA</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>
    CEQA
    </h1>
    Corporate Enterprise Qora Alliance  
    </div>
    
    <div class="navbar">
      <a href="/ceqa" class="active">Home</a>
      <a href="/ceqa/resources.htm">Resources</a>
      <a href="/ceqa/join.htm" >Join Now</a>
      <a href="/ceqa/members.htm">Members</a>
      <a href="/index/blog.html?blogname=okchai" class="right">okchai blog</a>
    </div>
    
    <div class="row">
      <div class="side">
      <h3>CEQA</h3>
      <br>
      <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">
      <p>
      <font size=6>The CEQA is a member-led DAO organization whose objective is to drive the use of Enterprise Qora decentralized website and Mainnet Qora blockchain technology as an open-standard to empower ALL enterprises and corporations. </font>
      </p>      
      
        
        
      </div>
    </div>
    
    <div class="footer">
      <h4>Corporate Enterprise Qora Alliance</h4>
    </div>
    
    </body>
    </html>
    <html lang="en">
    <head>
    <title>CEQA: Members</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>
    CEQA
    </h1>
    Corporate Enterprise Qora Alliance  
    </div>
    
    <div class="navbar">
      <a href="/ceqa">Home</a>
      <a href="/ceqa/resources.htm">Resources</a>
      <a href="/ceqa/join.htm" >Join Now</a>
      <a href="/ceqa/members.htm" class="active">Members</a>
      <a href="/index/blog.html?blogname=okchai" class="right">okchai blog</a>
    </div>
    
    <div class="row">
      <div class="side">
      <h3>CEQA DAO Members</h3>
      Members whose hold 1 or above of <a href="/twindao">TwinDAO</a> token.
      <br><br>
      <h3>CEQA Members</h3>
      Members - General.
      <br><br>
      <h3>CEQA Friends</h3>
      Individual Qora User(s) with Qora ID.
      <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">
      <h2>
      CEQA DAO Members
      </h2>
      <p>
      <a href="/aitway">AITWAY SYSTEM LLP</a>
      </p>
     <br>
      <h2>
      CEQA Members
      </h2> 
      <p>
      <a href="https://aitway.com.sg">AITWAY's Online Store</a>
      </p>
    <br>
    <h2>
     CEQA Friends
    </h2>     
     <p>
      <a href="/index/blog.html?blogname=okchai">okchai</a>
      </p>
        
        
      </div>
    </div>
    
    <div class="footer">
      <h4>Corporate Enterprise Qora Alliance</h4>
    </div>
    
    </body>
    </html>
    <html lang="en">
    <head>
    <title>CEQA : Resources</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>
    CEQA
    </h1>
    Corporate Enterprise Qora Alliance  
    </div>
    
    <div class="navbar">
      <a href="/ceqa">Home</a>
      <a href="/ceqa/resources.htm"  class="active">Resources</a>
      <a href="/ceqa/join.htm" >Join Now</a>
      <a href="/ceqa/members.htm">Members</a>
      <a href="/index/blog.html?blogname=okchai" class="right">okchai blog</a>
    </div>
    
    <div class="row">
      <div class="side">
      <h3>Qora Resources</h3>
      <br>
      <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">
      <p>
     1.) Open Source code : <a target="_tab" href="https://github.com/Qoracoin/Qora/releases">Qora - Github</a><br><br>
    2.) Qora Documents : <a target="_tab" href="https://docs.qora.org">https://docs.qora.org</a><br><br>
    3.) Qora API : <a target="_tab" href="https://api.qora.org">https://api.qora.org</a><br><br>
    4.) Qora installation guide :  <a href="/qora.htm">http://qora-gateway-ip/qora.htm</a> (by okchai)
    </p>      
      
        
        
      </div>
    </div>
    
    <div class="footer">
      <h4>Corporate Enterprise Qora Alliance</h4>
    </div>
    
    </body>
    </html>
    <html lang="en">
    <head>
    <title>CEQA: Join Now</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>
    CEQA
    </h1>
    Corporate Enterprise Qora Alliance  
    </div>
    
    <div class="navbar">
      <a href="/ceqa">Home</a>
      <a href="/ceqa/resources.htm">Resources</a>
      <a href="/ceqa/join.htm" class="active">Join Now</a>
      <a href="/ceqa/members.htm">Members</a>
      <a href="/index/blog.html?blogname=okchai" class="right">okchai blog</a>
    </div>
    
    <div class="row">
      <div class="side">
      <h3>Get some Qora</h3>
      To become a member, you need to hold some Qora token and use it.
      <br><br>
      Send a message-Qora&nbsp; to <a href="/index/blog.html?blogname=okchai">okchai</a> to apply. <br>
      
      
      <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">
      <h3>
      Get some Qora token from forum's members ( beware of scammers ! )
       </h3>
      <p>
      <a href="https://bitcointalk.org/index.php?topic=1358722.3540">Qora Forum at Bitcointalk</a>
      </p>
    
      <h3>
      Buy some Qora at aitway.com.sg
      </h3>  
       <p>
      <a href="https://aitway.com.sg/index.php?route=product/product&path=24_60&product_id=56">AITWAY's online store</a>
      </p>
      
       <h3>
      Exchange some Qora using DEX, a Qora-Timah and Ardor-TIM LP(liquidity provider)system.
      </h3>  
       <p>
      <a href="https://aitway.com.sg/index.php?route=product/product&path=24_60&product_id=54">AITWAY's service for TIM-Timah swap</a>
      </p>
    
    
          
      
        
        
      </div>
    </div>
    
    <div class="footer">
      <h4>Corporate Enterprise Qora Alliance</h4>
    </div>
    
    </body>
    </html>