<html lang="en">
<head>
<title>QNS Name Check</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>
QNS
</h1>
Check QNS Name Availability
</div>
<div class="navbar">
<a href="/qns" class="active">Home</a>
<a href="/index/blockexplorer.html">Qora BlockExplorer</a>
<a href="/index/blog.html?blogname=okchai" class="right">okchai blog</a>
</div>
<div class="row">
<div class="side">
<h3>QNS</h3>
<b>Qora Naming service</b>
<br><br>
Any QNS name can create a subfolder on any Qora gateway
and on localhost with Qora software.<br><br>
Example : QNS is i, then <br>
via a Qora gateway is http://qora.co.uk/i<br>or<br>
via localhost is http://localhost/i<br> or <br>
http://localhost:9090/i (default TCP port 9090) or<br>
http://127.0.0.1/i or <br>
http://127.0.0.1"9090/i <br><br><br>
Localhost is the default name (hostname) for the computer you're logged into or working on. It always resolves to 127.0.0.1, which is known as the loopback IP address.
</div>
<div class="main">
<p>
You can check QNS name availability at <a href="/index/blockexplorer.html">Qora BlockExplorer</a><br><br>
<img border="0" src="https://aitway.com/pics/qns1.jpg" width="100%"><br>
check QNS name : i <br>
taken.<br><br>
<img border="0" src="https://aitway.com/pics/qns2.jpg" width="100%"><br>
check QNS name : okchai <br>
taken.<br><br>
<img border="0" src="https://aitway.com/pics/qns3.jpg" width="100%"><br>
check QNS name : ongkianchai <br>
available for registration<br><br>
</p>
</div>
</div>
<div class="footer">
<h4>QNS : Qora Naming Service </h4>
</div>
</body>
</html>