# Premium Domain Search, Branding Consultants and Brokers

> Markdown mirror of DialtoneApp's public top-site detail page for `propr.net`.

URL: https://dialtoneapp.com/top-sites/propr.net/index.md
Canonical HTML: https://dialtoneapp.com/top-sites/propr.net

## Summary

- Domain: `propr.net`
- Website: https://propr.net
- Description: ai readable | score 24 | purchase read only
- Label: ai_readable
- Payment surface: Not available
- Purchase boundary: read_only
- Control boundary: unknown
- Rank: 448842

## robots

Not found.

## llms

~~~text
<!DOCTYPE html>
<html lang="en">

<head>

<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-99EY5PFZML"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-99EY5PFZML');
</script>

<title>Premium Domain Search, Branding Consultants and Brokers</title>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="description" content="Find Your Ideal Domain at Brand Selection Premium Domain Name Sales, Consultants and Brokers.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<link rel="stylesheet" type="text/css" href="/scripts/style.css">
<link rel="icon" type="image/x-icon" href="/images/BSelect.ico">
<link rel="apple-touch-icon" href="/images/apple_icon_180.png">
<style>
.searchBox {
width:455px;
font-size:17px; 
padding:5px;
}

@media (max-width: 820px) {

.searchBox {
width: 240px;
font-size:14px;
}
}

</style>
</head>

<body>

<header>
<hr id="hr1">

<img src="/images/BrandsLogo3.png" alt="Premium Domain Name Sales at Brand Selection" class="BSL-logo">
<a href="https://www.nominet.uk" target="_blank"><img src="/images/nominet_member_logo1.png" alt="Brand Selection are Nominet Members" class="nominet-logo"></a>

<nav id="siteNav" class="site-nav">
<a href="/index.html">Home</a>
<a href="/domainsbycategory.html">All Domains</a>
<a href="/brandfinder.html">BrandFinder</a>
<a href="/services.html">Services</a>
<a href="/about.html">About</a>
<a href="/clients.html">Clients</a>
<a href="/contact.html">Contact </a>
</nav>
<hr id="hr1">


<nav>
<!-- Mobile burger button -->
<div id="burger" class="burger">
    <span></span>
    <span></span>
    <span></span>
</div>
</nav>

</header>


<main>
  <h1 align="center" style="margin-top: 24px;">Premium .com .net and .org Domain Names For Sale</h1>

<section class="section2">
<input id="searchBox" class="searchBox" type="text" placeholder="Livesearch of Forwarding Domains and Make Enquiry (.com .net. .org)">
<ul id="results"></ul>
 <div id="noResults">No results found</div>
</section>

  <script>
    console.log("Script is running");
    window.onload = function() {
      let data = [];
      let timeout = null;

      fetch("/data/livesearchGTLD.json")
        .then(response => {
          console.log("Fetch status:", response.status);
          return response.json();
        })
        .then(json => {
          data = json;
          console.log("Loaded", data.length, "entries");
        })
        .catch(err => console.error("Fetch error:", err));

      const searchBox = document.getElementById("searchBox");
      const list = document.getElementById("results");
      const noResults = document.getElementById("noResults");

      searchBox.addEventListener("input", function(e) {
        clearTimeout(timeout);
        const query = e.target.value.toLowerCase();
        timeout = setTimeout(() => {
          if (query.length >= 2) {
            const matches = data.filter(item => item.name.toLowerCase().includes(query));
            console.log("Query:", query, "Matches:", matches);
            renderResults(matches, query);
          } else {
            renderResults([], query);
          }
        }, 150);
      });

      function renderResults(results, query) {
        list.innerHTML = "";
        noResults.style.display = "none";
        if (query.length >= 2 && results.length === 0) {
          noResults.style.display = "block";
          return;
        }
        results.slice(0, 20).forEach(item => {
          const li = document.createElement("li");
          const a = document.createElement("a");
          a.href = item.url;
          a.target = "_blank";
          const regex = new RegExp(`(${query})`, "gi");
          a.innerHTML = item.name.replace(regex, "<mark>$1</mark>");
          li.appendChild(a);
          list.appendChild(li);
        });
      }
    };
  </script>

<section class="section1">
<h2>Find Domain Brands</h2>
<p style="text-align: center">Thousands of dictionary word and generic domain names available. Find the perfect brand for your business or project right here.</p>

<button class="btn1" onclick="document.location='https://www.brandselection.co.uk/premiumdomainsforsaleGTLD.html'">.com .net and .org Premium Domains</button>
      <button class="btn1" onclick="document.location='https://www.brandselection.co.uk/domainsbycategory.html'">All .uk Domains and Category Lists</button>
      <button class="btn1" onclick="document.location='https://www.brandselection.co.uk/brandfinder.html'">.uk Domain Brand Finder Search</button>
</section>

<section class="section1">
<h2>Domain Buying Service</h2>
<p style="text-align: center">We use our expertise and experience to help you buy any domain name</p>
<h3><a href="https://www.brandselection.co.uk/brokers.html">- Click for More Information -</a></h3>
</section>


<section class="section1">
<h2>Brand Selection - Your Domain Name Experts</h2>
<p style="text-align: center">Successfully choosing, acquiring and selling the best brandable and generic premium domain names. Twenty years experience in the industry specialising in UK and international marketplace.</p>
</section>

</main>

<footer id="desktop-footer">
<div>&#169 2025 Brand Selection Limited</div><div><a href="contact.html">Contact</a> | <a href="tos.html" target="_blank" rel="noopener">Terms and Conditions</a> | <a href="privacy.html" target="_blank" rel="noopener">Privacy Policy</a></div>
</footer>

<footer id="mobile-footer">
<div>&#169 2026 Brand Selection Ltd</div><div><a href="contact.html">Contact</a> | <a href="tos.html" target="_blank" rel="noopener">Terms and Conditions</a> | <a href="privacy.html" target="_blank" rel="noopener">Privacy</a></div>
</footer>


<script>
document.getElementById("burger").addEventListener("click", function () {
  this.classList.toggle("open");
  document.getElementById("siteNav").classList.toggle("open");
});
</script>


</body>
</html>
~~~

## llms-full

~~~text
<!DOCTYPE html>
<html lang="en">

<head>

<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-99EY5PFZML"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-99EY5PFZML');
</script>

<title>Premium Domain Search, Branding Consultants and Brokers</title>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="description" content="Find Your Ideal Domain at Brand Selection Premium Domain Name Sales, Consultants and Brokers.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<link rel="stylesheet" type="text/css" href="/scripts/style.css">
<link rel="icon" type="image/x-icon" href="/images/BSelect.ico">
<link rel="apple-touch-icon" href="/images/apple_icon_180.png">
<style>
.searchBox {
width:455px;
font-size:17px; 
padding:5px;
}

@media (max-width: 820px) {

.searchBox {
width: 240px;
font-size:14px;
}
}

</style>
</head>

<body>

<header>
<hr id="hr1">

<img src="/images/BrandsLogo3.png" alt="Premium Domain Name Sales at Brand Selection" class="BSL-logo">
<a href="https://www.nominet.uk" target="_blank"><img src="/images/nominet_member_logo1.png" alt="Brand Selection are Nominet Members" class="nominet-logo"></a>

<nav id="siteNav" class="site-nav">
<a href="/index.html">Home</a>
<a href="/domainsbycategory.html">All Domains</a>
<a href="/brandfinder.html">BrandFinder</a>
<a href="/services.html">Services</a>
<a href="/about.html">About</a>
<a href="/clients.html">Clients</a>
<a href="/contact.html">Contact </a>
</nav>
<hr id="hr1">


<nav>
<!-- Mobile burger button -->
<div id="burger" class="burger">
    <span></span>
    <span></span>
    <span></span>
</div>
</nav>

</header>


<main>
  <h1 align="center" style="margin-top: 24px;">Premium .com .net and .org Domain Names For Sale</h1>

<section class="section2">
<input id="searchBox" class="searchBox" type="text" placeholder="Livesearch of Forwarding Domains and Make Enquiry (.com .net. .org)">
<ul id="results"></ul>
 <div id="noResults">No results found</div>
</section>

  <script>
    console.log("Script is running");
    window.onload = function() {
      let data = [];
      let timeout = null;

      fetch("/data/livesearchGTLD.json")
        .then(response => {
          console.log("Fetch status:", response.status);
          return response.json();
        })
        .then(json => {
          data = json;
          console.log("Loaded", data.length, "entries");
        })
        .catch(err => console.error("Fetch error:", err));

      const searchBox = document.getElementById("searchBox");
      const list = document.getElementById("results");
      const noResults = document.getElementById("noResults");

      searchBox.addEventListener("input", function(e) {
        clearTimeout(timeout);
        const query = e.target.value.toLowerCase();
        timeout = setTimeout(() => {
          if (query.length >= 2) {
            const matches = data.filter(item => item.name.toLowerCase().includes(query));
            console.log("Query:", query, "Matches:", matches);
            renderResults(matches, query);
          } else {
            renderResults([], query);
          }
        }, 150);
      });

      function renderResults(results, query) {
        list.innerHTML = "";
        noResults.style.display = "none";
        if (query.length >= 2 && results.length === 0) {
          noResults.style.display = "block";
          return;
        }
        results.slice(0, 20).forEach(item => {
          const li = document.createElement("li");
          const a = document.createElement("a");
          a.href = item.url;
          a.target = "_blank";
          const regex = new RegExp(`(${query})`, "gi");
          a.innerHTML = item.name.replace(regex, "<mark>$1</mark>");
          li.appendChild(a);
          list.appendChild(li);
        });
      }
    };
  </script>

<section class="section1">
<h2>Find Domain Brands</h2>
<p style="text-align: center">Thousands of dictionary word and generic domain names available. Find the perfect brand for your business or project right here.</p>

<button class="btn1" onclick="document.location='https://www.brandselection.co.uk/premiumdomainsforsaleGTLD.html'">.com .net and .org Premium Domains</button>
      <button class="btn1" onclick="document.location='https://www.brandselection.co.uk/domainsbycategory.html'">All .uk Domains and Category Lists</button>
      <button class="btn1" onclick="document.location='https://www.brandselection.co.uk/brandfinder.html'">.uk Domain Brand Finder Search</button>
</section>

<section class="section1">
<h2>Domain Buying Service</h2>
<p style="text-align: center">We use our expertise and experience to help you buy any domain name</p>
<h3><a href="https://www.brandselection.co.uk/brokers.html">- Click for More Information -</a></h3>
</section>


<section class="section1">
<h2>Brand Selection - Your Domain Name Experts</h2>
<p style="text-align: center">Successfully choosing, acquiring and selling the best brandable and generic premium domain names. Twenty years experience in the industry specialising in UK and international marketplace.</p>
</section>

</main>

<footer id="desktop-footer">
<div>&#169 2025 Brand Selection Limited</div><div><a href="contact.html">Contact</a> | <a href="tos.html" target="_blank" rel="noopener">Terms and Conditions</a> | <a href="privacy.html" target="_blank" rel="noopener">Privacy Policy</a></div>
</footer>

<footer id="mobile-footer">
<div>&#169 2026 Brand Selection Ltd</div><div><a href="contact.html">Contact</a> | <a href="tos.html" target="_blank" rel="noopener">Terms and Conditions</a> | <a href="privacy.html" target="_blank" rel="noopener">Privacy</a></div>
</footer>


<script>
document.getElementById("burger").addEventListener("click", function () {
  this.classList.toggle("open");
  document.getElementById("siteNav").classList.toggle("open");
});
</script>


</body>
</html>
~~~