Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - pnb.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Sat, 10 May 2025 08:19:55 GMT
Content-Type: text/html
Content-Length: 162
Connection: keep-alive
location: https://www.pnb.com/
cf-cache-status: DYNAMIC
Server: cloudflare
CF-RAY: 93d803ad4af6d987-HEL

HTTP Code 301 Moved Permanently

301 status code means that the requested resource has been permanently moved to a new URL. All future requests should use the new address.

When is Code 301 used?

  • When changing a website domain
  • When modifying URL structures
  • When setting up redirects for SEO

What does Code 301 mean for the user?

The browser will automatically redirect the user to the new address, and search engines will update their indexes.

200 OK - https://pnb.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Sat, 10 May 2025 08:19:56 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
vary: Accept-Encoding
expires: Sat, 10 May 2025 08:19:56 GMT
Set-Cookie: PLAY_SESSION=61c522b509deb39b11b286c8afcb935f26615d4a-v=1; Max-Age=32400; Expires=Sat, 10 May 2025 17:19:56 GMT; Path=/; Secure; HTTPOnly
Cache-Control: public, max-age=0
x-frame-options: SAMEORIGIN
x-xss-protection: 1; mode=block
x-ad-insert-result: no ads - index
x-content-type-options: nosniff
strict-transport-security: max-age=16070400
x-varnish-ttl: 0.000
x-varnish: 29512390
Age: 0
x-varnish-hitmiss: MISS
x-varnish-count: 0
via: varnish
cf-cache-status: DYNAMIC
Server: cloudflare
CF-RAY: 93d803b15e068d57-HEL

HTTP Code 200 OK

200 status code is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.

When is Code 200 used?

  • When loading a web page
  • When successfully receiving an API response
  • When processing a form or another HTTP request

What does Code 200 mean for the user?

The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.

GET / HTTP/1.1
Host: pnb.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html class="no-js" lang="en"><head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <title>Home › Pacific National Bank</title>
    <meta name="description" content="">
    <meta name="keywords" content="">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="apple-mobile-web-app-title" content="Pacific National Bank">
    <link rel="stylesheet" href="/assets/css/main.min.css?v=1739979904364">

    <script>

    (function () {
      "use strict";
      //$.support.cors=true;

      // once cached, the css file is stored on the client forever unless
      // the URL below is changed. Any change will invalidate the cache
      var css_href = '/assets/css/fonts.css?v=11242014';
      // a simple event handler wrapper
      function on(el, ev, callback) {
        if (el.addEventListener) {
          el.addEventListener(ev, callback, false);
        } else if (el.attachEvent) {
          el.attachEvent("on" + ev, callback);
        }
      }
      
      // if we have the fonts in localStorage or if we've cached them using the native batrowser cache
      if ((window.localStorage && localStorage.font_css_cache) || document.cookie.indexOf('font_css_cache') > -1){
        // just use the cached version
        injectFontsStylesheet();
      } else {
       // otherwise, don't block the loading of the page; wait until it's done.
        on(window, "load", injectFontsStylesheet);
      }
      
      // quick way to determine whether a css file has been cached locally
      function fileIsCached(href) {
        return window.localStorage && localStorage.font_css_cache && (localStorage.font_css_cache_file === href);
      }

      // time to get the actual css file
      function injectFontsStylesheet() {
       // if this is an older browser
        if (!window.localStorage || !window.XMLHttpRequest) {
          var stylesheet = document.createElement('link');
          stylesheet.href = css_href;
          stylesheet.rel = 'stylesheet';
          stylesheet.type = 'text/css';
          document.getElementsByTagName('head')[0].appendChild(stylesheet);
          // just use the native browser cache
          // this requires a good expires header on the server
          document.cookie = "font_css_cache";
        
        // if this isn't an old browser
        } else {

            // use the cached version if we already have it
          if (fileIsCached(css_href)) {
            
            injectRawStyle(localStorage.font_css_cache);
            // otherwise, load it with ajax
          } else {
            var request = createCORSRequest("GET", css_href);
            if (request){
                request.onreadystatechange = function () {
                  if (request.readyState === 4) {
                    // once we have the content, quickly inject the css rules
                    injectRawStyle(request.responseText);
                    // and cache the text content for further use
                    // notice that this overwrites anything that might have already been previously cached
                    localStorage.font_css_cache = request.responseText;
                    localStorage.font_css_cache_file = css_href;
                  }
                };
                request.send();
            }
          }
        }
      }

      function createCORSRequest(method, url){
          var xhr = new XMLHttpRequest();
          // Check if the XMLHttpRequest object has a "withCredentials" property.
          // "withCredentials" only exists on XMLHTTPRequest2 objects.
          if ("withCredentials" in xhr){
              xhr.open(method, url, true);
          // Otherwise, check if XDomainRequest.
          // XDomainRequest only exists in IE, and is IE's way of making CORS requests.
          } else if (typeof XDomainRequest != "undefined"){
              xhr = new XDomainRequest();
              xhr.open(method, url);
          } else {
              // Otherwise, CORS is not supported by the browser.
              xhr = null;
          }
          return xhr;
      }


      // this is the simple utitily that injects the cached or loaded css text
      function injectRawStyle(text) {
        var style = document.createElement('style');
        // cater for IE8 which doesn't support style.innerHTML
        style.setAttribute("type", "text/css");
        if (style.styleSheet) {
            style.styleSheet.cssText = text;
        } else {
            style.innerHTML = text;
        }
        document.getElementsByTagName('head')[0].appendChild(style);
      }

    }());
</script>

  
          
        </head>

<body class="home ">
    <div role="navigation" aria-label="Skip and PDF reader download links" id="skipNav">
    <a href="#main" class="sr-only sr-only-focusable">Skip to main content</a>
    <a href="http://get.adobe.com/reader/" class="external sr-only sr-only-focusable" target="_blank">Download Acrobat Reader 5.0 or higher to view PDF files.</a>
</div>

    <div class="alert hidden-alert" id="alertBox" role="region" aria-label="Important notice">
      <div class="inner">
          <div data-content-block="alertCopy" data-content="content" data-editable="editable" class="alert-body">
              <p style="text-align: center;"><br></p>
<p style="text-align: center;"><br></p>
          </div>
          <button type="button" class="close" aria-label="Close alert"><span class="icon" aria-hidden="true">×</span><span class="sr-only">Close alert</span></button>
      </div>
    </div>

    <header>
  <div class="header">
    <div class="container">

      <div class="header-left pull-left">
        <a href="/" class="logo" id="logo" title="Pacific National Bank, Miami, FL" itemprop="url" itemscope="" itemtype="http://schema.org/BankOrCreditUnion">
          <span class="logotype" itemprop="logo">
            <span class="sr-only">Pacific National Bank</span>
          </span>
        </a>
        <div class="mobile-phone">
            <span class="sr-only">Call us toll-free at </span><span><a href="tel">877.381.3297</a></span>
        </div>
      </div>

      <div class="header-right pull-right">
        <div class="navbar menu hidden-xs hidden-sm">
          <nav class="nav-container">
            <ul class="banno-menu menu-ddbc2fc0-87bb-11e5-8ad6-005056a30020">
                       <li class="dropdown menu-category">
        <span role="button" aria-expanded="false" class="category-item" tabindex="0">Personal</span>
        <ul class="dropdown-menu">
            <li class="menu-internal">
        <a href="/personal/checking">Checking</a>
        
      </li><li class="menu-internal">
        <a href="/personal/money-market">Money Market</a>
        
      </li><li class="menu-internal">
        <a href="/personal/savings">Savings</a>
        
      </li><li class="menu-internal">
        <a href="/personal/certificates-of-deposit">Certificates of Deposit</a>
        
      </li><li class="menu-internal">
        <a href="/personal/online-banking">Online Banking</a>
        
      </li><li class="menu-internal">
        <a href="/personal/atm-debit-cards">ATM/Debit Cards</a>
        
      </li><li class="menu-internal">
        <a href="/personal/additional-services">Additional Services</a>
        
      </li>
          </ul>
      </li><li class="dropdown menu-category">
        <span role="button" aria-expanded="false" class="category-item" tabindex="0">Business</span>
        <ul class="dropdown-menu">
            <li class="menu-internal">
        <a href="/business/checking">Checking</a>
        
      </li><li class="menu-internal">
        <a href="/business/money-market">Money Market</a>
        
      </li><li class="menu-internal">
        <a href="/business/savings">Savings</a>
        
      </li><li class="menu-internal">
        <a href="/business/certificates-of-deposit">Certificates of Deposit</a>
        
      </li><li class="menu-internal">
        <a href="/business/online-banking">Online Banking</a>
        
      </li><li class="menu-internal">
        <a href="/business/debit-cards">Debit Cards</a>
        
      </li><li class="menu-internal">
        <a href="/business/commercial-loans">Commercial Loans</a>
        
      </li><li class="menu-internal">
        <a href="/business/commercial-real-estate-loans">Commercial Real Estate Loans</a>
        
      </li><li class="menu-internal">
        <a href="/business/trade-finance">Trade Finance</a>
        
      </li><li class="menu-internal">
        <a href="/personal/additional-services">Additional Services</a>
        
      </li>
          </ul>
      </li><li class="dropdown menu-category">
        <span role="button" aria-expanded="false" class="category-item" tabindex="0">Information Center</span>
        <ul class="dropdown-menu">
            <li class="menu-internal">
        <a href="/service/faqs">FAQs</a>
        
      </li><li class="menu-internal">
        <a href="/service/schedule-of-charges">Schedule of Charges</a>
        
      </li><li class="menu-internal">
        <a href="/information-center/my-money-program">My Money Program</a>
        
      </li>
          </ul>
      </li><li class="dropdown menu-category">
        <span role="button" aria-expanded="false" class="category-item" tabindex="0">About Us</span>
        <ul class="dropdown-menu">
            <li class="menu-internal">
        <a href="/about-us/our-mission">Our Mission</a>
        
      </li><li class="menu-internal">
        <a href="/about-us/our-history">Our History</a>
        
      </li><li class="menu-internal">
        <a href="/about-us/contact-us">Contact Us</a>
        
      </li><li class="menu-internal">
        <a href="/about-us/locate-us">Locate Us</a>
        
      </li><li class="menu-internal">
        <a href="/about-us/pnb-in-the-news">PNB in the News</a>
        
      </li><li class="menu-internal">
        <a href="/about-us/media-information">Media Information</a>
        
      </li>
          </ul>
      </li>
                     </ul>
          </nav>
        </div>

        <div class="header-items hidden-xs">
          <a href="https://app.loanspq.com/apply.aspx?enc=Kw21Wblm1yxpjJabdoZaD98sLV47T5OmQc6rFd1icAgk6dTgFfp-HMMorV07FLmn" class="header-items_account btn">
            <span class="icon icon-openaccount" aria-hidden="true"></span>
            <span>Open Account</span>
          </a>
          <a href="https://smartpay.profitstars.com/expressbd/PNBSPBD?returnUrl=https%3A%2F%2Fsmartpay.profitstars.com%3A443%2Fexpressbd%2FPNBSPBD%2FBillerDirect%2FIndex%2F3414505&locationId=3414505" class="header-items_account btn">
            <span class="icon icon-openaccount" aria-hidden="true"></span>
            <span class="header-items_account_text">Make Loan <br>Payment</span>
          </a>
        </div>

        <div class="header-buttons">
          <a href="#search-mobile" data-backdrop="static" data-keyboard="true" id="search-mobile-btn" data-toggle="modal" class="header-buttons_search btn btn-inverse visible-xs-inline-block">
          	<span class="icon icon-search" aria-hidden="true"></span>
            <span class="search-btn-text">Search</span>
          </a>
          <a href="#olb" data-backdrop="static" data-keyboard="true" id="login" data-toggle="modal" class="header-buttons_olb btn btn-inverse open-olb-link-en">
            <span class="icon icon-lock" aria-hidden="true"></span>
            <span class="olb-btn-text">
              <span hreflang="en" class="olb-btn-text-en">Login / Enroll</span><br>
              <span hreflang="es" class="olb-btn-text-es">Iniciar sesión</span>
            </span>
          </a>
          <a class="navbar-toggle btn btn-inverse" href="javascript:;" role="button" aria-haspopup="true" aria-controls="navbar-mobile_nav">
            <span class="closed-nav">
              <span class="menu-bars" aria-hidden="true">
                <span class="icon-bar"></span>
                <span class="icon-bar"></span>
                <span class="icon-bar"></span>
              </span>
              <span class="menu-btn-text">Menu</span>
            </span>
            <span class="open-nav">
              <span class="icon icon-close" aria-hidden="true"></span>
              <span class="menu-btn-text">Close<span class="sr-only"> Menu</span></span>
            </span>
          </a>
        </div>

        <div class="header-items visible-xs-block">
          <a href="https://app.loanspq.com/apply.aspx?enc=Kw21Wblm1yxpjJabdoZaD98sLV47T5OmQc6rFd1icAgk6dTgFfp-HMMorV07FLmn" class="header-items_account btn">
            <span class="icon icon-openaccount" aria-hidden="true"></span>
            <span>Open Account</span>
          </a>
          <a href="https://smartpay.profitstars.com/expressbd/PNBSPBD?returnUrl=https%3A%2F%2Fsmartpay.profitstars.com%3A443%2Fexpressbd%2FPNBSPBD%2FBillerDirect%2FIndex%2F3414505&locationId=3414505" class="header-items_account btn">
            <span class="icon icon-openaccount" aria-hidden="true"></span>
            <span>Make Loan Payment</span>
          </a>
        </div>
      </div>

    </div>
  </div>
        <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@1,400;1,600">
<div class="fdic-banner">
  <div class="container">
    <div class="fdic-container">
      <div class="fdic-logo">
        <svg width="38" height="17" viewBox="0 0 38 17" aria-labelledby="fdicLogo">
         <title id="fdicLogo">FDIC Logo</title>
          <g>
            <path fill-rule="evenodd" clip-rule="evenodd" d="M8.79102 0.673615H13.9183C18.5271 0.673615 21.4825 3.66654 21.4825 8.34109C21.4825 13.5134 18.216 16.0328 13.0138 16.0328H8.79102V0.673615ZM13.5956 4.19475C13.4113 4.19475 13.1751 4.2251 12.8525 4.2251V12.5057C15.4564 12.5057 17.4613 11.413 17.4613 8.25614C17.4613 5.54248 15.8194 4.20082 13.5841 4.20082L13.5956 4.19475Z" fill="currentColor"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" d="M37.3603 5.14182V1.0865C36.3305 0.61301 35.2172 0.375059 34.0938 0.388356C32.0639 0.322493 30.0956 1.12816 28.6402 2.6207C27.1847 4.11323 26.3669 6.16465 26.3741 8.30473C26.3741 12.8093 29.7673 16.1118 34.0131 16.1118C35.2019 16.1973 36.3828 15.8524 37.3603 15.1344V11.073C36.4505 11.779 35.3558 12.1713 34.2263 12.1961C33.1948 12.2257 32.198 11.8027 31.4739 11.0281C30.7497 10.2535 30.3632 9.19685 30.4068 8.11047C30.3706 7.02121 30.7578 5.96358 31.4788 5.18208C32.1997 4.40058 33.192 3.96287 34.2263 3.97015C35.3567 4.01174 36.4489 4.41161 37.3603 5.11754V5.14182Z" fill="currentColor"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" d="M0 0.673615V16.0328H4.00964L4.03845 10.1563H7.93863V6.60483H4.06149L4.03845 4.22506H8.23244V0.673615H0Z" fill="currentColor"></path>
            <path fill-rule="evenodd" clip-rule="evenodd" d="M21.9092 16.0328H25.9188V0.673615H21.9092V16.0328Z" fill="currentColor"></path>
          </g>
        </svg>
      </div>
      <span class="fdic-text">FDIC-Insured - Backed by the full faith and credit of the U.S. Government</span>
    </div>
  </div>
</div>
  <div class="search-bar">
    <div class="container">
      <div class="search-bar_right">
        <div class="header-items_phone">
          <span class="sr-only">Call us at </span>
          <a href="tel:+18773713297">877.381.3297</a>
        </div>
        <form method="GET" action="/search" class="navbar-search" role="search">
          <label for="second-search" class="sr-only">Search terms</label>
          <input placeholder="Search" id="second-search" name="q" type="search" required="">
          <button class="btn-search pull-left" type="submit" title="Begin search"><span class="icon icon-search" aria-hidden="true"></span><span class="sr-only">Begin search</span></button>
        </form>
      </div>
    </div>
  </div>
  <div class="navbar-mobile">
    <div class="navbar menu">
      <nav class="nav-container" id="navbar-mobile_nav" tabindex="0">
        <ul class="banno-menu menu-ddbc2fc0-87bb-11e5-8ad6-005056a30020">
                       <li class="dropdown menu-category">
        <span role="button" aria-expanded="false" class="category-item" tabindex="0">Personal</span>
        <ul class="dropdown-menu">
            <li class="menu-internal">
        <a href="/personal/checking">Checking</a>
        
      </li><li class="menu-internal">
        <a href="/personal/money-market">Money Market</a>
        
      </li><li class="menu-internal">
        <a href="/personal/savings">Savings</a>
        
      </li><li class="menu-internal">
        <a href="/personal/certificates-of-deposit">Certificates of Deposit</a>
        
      </li><li class="menu-internal">
        <a href="/personal/online-banking">Online Banking</a>
        
      </li><li class="menu-internal">
        <a href="/personal/atm-debit-cards">ATM/Debit Cards</a>
        
      </li><li class="menu-internal">
        <a href="/personal/additional-services">Additional Services</a>
        
      </li>
          </ul>
      </li><li class="dropdown menu-category">
        <span role="button" aria-expanded="false" class="category-item" tabindex="0">Business</span>
        <ul class="dropdown-menu">
            <li class="menu-internal">
        <a href="/business/checking">Checking</a>
        
      </li><li class="menu-internal">
        <a href="/business/money-market">Money Market</a>
        
      </li><li class="menu-internal">
        <a href="/business/savings">Savings</a>
        
      </li><li class="menu-internal">
        <a href="/business/certificates-of-deposit">Certificates of Deposit</a>
        
      </li><li class="menu-internal">
        <a href="/business/online-banking">Online Banking</a>
        
      </li><li class="menu-internal">
        <a href="/business/debit-cards">Debit Cards</a>
        
      </li><li class="menu-internal">
        <a href="/business/commercial-loans">Commercial Loans</a>
        
      </li><li class="menu-internal">
        <a href="/business/commercial-real-estate-loans">Commercial Real Estate Loans</a>
        
      </li><li class="menu-internal">
        <a href="/business/trade-finance">Trade Finance</a>
        
      </li><li class="menu-internal">
        <a href="/personal/additional-services">Additional Services</a>
        
      </li>
          </ul>
      </li><li class="dropdown menu-category">
        <span role="button" aria-expanded="false" class="category-item" tabindex="0">Information Center</span>
        <ul class="dropdown-menu">
            <li class="menu-internal">
        <a href="/service/faqs">FAQs</a>
        
      </li><li class="menu-internal">
        <a href="/service/schedule-of-charges">Schedule of Charges</a>
        
      </li><li class="menu-internal">
        <a href="/information-center/my-money-program">My Money Program</a>
        
      </li>
          </ul>
      </li><li class="dropdown menu-category">
        <span role="button" aria-expanded="false" class="category-item" tabindex="0">About Us</span>
        <ul class="dropdown-menu">
            <li class="menu-internal">
        <a href="/about-us/our-mission">Our Mission</a>
        
      </li><li class="menu-internal">
        <a href="/about-us/our-history">Our History</a>
        
      </li><li class="menu-internal">
        <a href="/about-us/contact-us">Contact Us</a>
        
      </li><li class="menu-internal">
        <a href="/about-us/locate-us">Locate Us</a>
        
      </li><li class="menu-internal">
        <a href="/about-us/pnb-in-the-news">PNB in the News</a>
        
      </li><li class="menu-internal">
        <a href="/about-us/media-information">Media Information</a>
        
      </li>
          </ul>
      </li>
                     </ul>
      </nav>
    </div>
  </div>
</header>


    <div id="main" role="main" tabindex="-1">
      <h1 class="sr-only">Pacific National Bank test</h1>
      <div class="hero">
        <div class="hero-content">
          <div class="container">
            <div class="sr-only" id="hero-slider-desc">
              <h2>Slideshow</h2>
              <p>This slider displays three slides. Slides do <em>not</em> advance automatically. To navigate through slides, use the previous slide or next slide buttons, the left or right arrow keys, or swipe the slides left or right.</p>
            </div>
            <div class="slider" role="region" aria-label="Slideshow" aria-describedby="hero-slider-desc">
             <div class="main-slide">
              <div class="content main-slide" data-content-block="hero1" data-content="content" data-editable="editable">
                  <p><br><br></p>
<h1>Pacific National Bank Named One of American Banker's Best Banks to Work For in 2024!</h1>
<div><a href="/assets/files/W3XgqSEh" data-link-id="" data-link-type-id="file" class="btn btn-default " data-disclaimer-id="null" target="_self" tabindex="-1">Press Release</a></div>
               </div> 
              </div> 
              <div class="main-slide">
               <div class="content main-slide" data-content-block="hero2" data-content="content" data-editable="editable">
                  <p><br></p>
<p><br></p>
<h1>Work hard...worry less!</h1>
<p class="h2">Our Business Cash Management Services can help you.</p>
<p><a href="/business/online-banking" data-link-id="/business/online-banking" data-link-type-id="page" class="btn btn-default" data-disclaimer-id="null" target="_self" tabindex="-1">Find out more</a></p>
               </div>
             </div>
             <div class="main-slide">
              <div class="content main-slide" data-content-block="hero3" data-content="content" data-editable="editable">
                  <h1>Great Online Specials <span style="font-family: inherit;">! </span></h1>
<div><br></div>
<div><span style="font-family: inherit;">
<h1> 6 Month CD 4.40% APY*<br> 9 Month CD 4.45% APY*</h1>
<h1>12 Month CD 4.25% APY*</h1>
</span></div>
<div><br></div>
<div><a href="https://app.loanspq.com/apply.aspx?enc=Kw21Wblm1yxpjJabdoZaD98sLV47T5OmQc6rFd1icAgk6dTgFfp-HMMorV07FLmn" data-link-id="" data-link-type-id="url" class="btn btn-default " data-disclaimer-id="null" target="_self" tabindex="0">Open an Account</a></div>
<div><br></div>
<h2><span class="smallest">The *Annual Percentage Yields (APY) are effective as of </span><span><span class="smallest">05/05/2025 and subject to change at any time without prior notice. Penalties may apply to early withdrawals. Offer applies to New Money Only for domestic personal accounts opened online.</span> </span></h2>
              </div>
            </div>
              <div id="slider_controls" role="region" aria-label="Slideshow controls"></div>
            </div>
            <div class="responsive-slider">
              <div class="slider_item">
                <div class="content" data-content-block="hero4" data-content="content" data-editable="editable">
                      <h2 class="h6">Online Specials</h2>
<p>Earn <a href="/landing" target="_self" data-disclaimer-id="null" class="" data-link-type-id="page" data-link-id="/landing">competitive rates</a> on your insured liquid deposits.</p>
<div style="text-align: center;">
<p><br></p>
<p><a href="https://app.loanspq.com/apply.aspx?enc=Kw21Wblm1yxpjJabdoZaD98sLV47T5OmQc6rFd1icAgk6dTgFfp-HMMorV07FLmn" data-link-id="" data-link-type-id="url" class="btn btn-default" data-disclaimer-id="null" target="_blank" rel="noopener">Open Account</a></p>
</div>
                </div>
              </div>  
              <div class="slider_item">
                <div class="content" data-content-block="hero5" data-content="content" data-editable="editable">
                      <h2 class="h6">Online Banking</h2>
<p>You have all the time in the world to do your banking.</p>
<p>See the other perks of <a target="_self" data-disclaimer-id="null" class="" data-link-type-id="page" data-link-id="/personal/online-banking" href="/personal/online-banking">Personal Online Banking</a> or <a target="_self" data-disclaimer-id="null" class="" data-link-type-id="page" data-link-id="/business/online-banking" href="/business/online-banking">Business Online Banking</a>.</p>
                </div>
              </div> 
              <div class="slider_item">
                <div class="content" data-content-block="hero6" data-content="content" data-editable="editable">
                      <h2 class="h6">Certificates of Deposit</h2>
<p>We offer <a href="/landing" data-link-id="/landing" data-link-type-id="page" class="" data-disclaimer-id="null" target="_self">short term and long term fixed rate automatically renewable CD options</a>.</p>
<div style="text-align: center;">
<p><br></p>
<p><a href="https://app.loanspq.com/apply.aspx?enc=Kw21Wblm1yxpjJabdoZaD98sLV47T5OmQc6rFd1icAgk6dTgFfp-HMMorV07FLmn" data-link-id="" data-link-type-id="url" class="btn btn-default" data-disclaimer-id="null" target="_blank" rel="noopener">Open Account</a></p>
</div>
                </div>
              </div> 
              <div class="slider_item">
                <div class="content" data-content-block="hero7" data-content="content" data-editable="editable">
                      <h2 class="h6">Need Help?</h2>
<p>PNB is here to assist you anyway we can.</p>
<div style="text-align: center;">
<p><br></p>
<p><a href="/service/faqs" data-link-id="/service/faqs" data-link-type-id="page" class="btn btn-default" data-disclaimer-id="null" target="_self">Read Our FAQ</a></p>
</div>
                </div>
              </div> 
              <div class="slider_nav">
                <div class="swipe">
                  <span class="icon icon-swipe" aria-hidden="true"></span>
                  <p>Swipe</p><span class="sr-only"> the slider above</span>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div><!-- End of hero -->

      <div class="subs-row hidden-content">
        <div class="container">
          <div class="subs-slider">
            <div class="slider_item">
              <div class="content hidden-content" data-content-block="sub1" data-content="content" data-editable="editable">
                  <div><img alt="" src="/assets/content/NKb99CJk/2016/02/19/PNB_icon_coin.png" image-id="bsGbzHbf"></div>
<h2 class="h6"><br>Savings</h2>
<p>Look at how you can earn more as you grow with our High Yield Accounts</p>
<p><a href="https://app.loanspq.com/apply.aspx?enc=Kw21Wblm1yxpjJabdoZaD98sLV47T5OmQc6rFd1icAgk6dTgFfp-HMMorV07FLmn" data-link-id="" data-link-type-id="url" class="" data-disclaimer-id="null" target="_blank" rel="noopener">Open an Account</a></p>
              </div>
            </div>
            <div class="slider_item">
              <div class="content hidden-content" data-content-block="sub2" data-content="content" data-editable="editable">
                  <div><img alt="" src="/assets/content/Yx7yKFl8/2016/02/19/PNB_icon_timer.png" image-id="Fcq8GLFq"></div>
<h2 class="h6"><br>Certificates of Deposit</h2>
<p>We offer short term and long term fixed rate automatically renewable CD options with a 10 day grace period after maturity to withdraw funds without penalty.</p>
<p><a href="https://app.loanspq.com/apply.aspx?enc=Kw21Wblm1yxpjJabdoZaD98sLV47T5OmQc6rFd1icAgk6dTgFfp-HMMorV07FLmn" data-link-id="" data-link-type-id="url" class="" data-disclaimer-id="null" target="_blank" rel="noopener">Open an Account</a></p>
              </div>
            </div>
            <div class="slider_item">
              <div class="content hidden-content" data-content-block="sub3" data-content="content" data-editable="editable">
                  <div><img alt="" src="/assets/content/UI6gN04x/2015/11/23/sub_chart.png" image-id="kifMYXP7"></div>
<h2 class="h6"><br>Money Market</h2>
<p>Just what you need when you want to increase your money flow and keep your spending on the right track.</p>
<p><a href="https://app.loanspq.com/apply.aspx?enc=Kw21Wblm1yxpjJabdoZaD98sLV47T5OmQc6rFd1icAgk6dTgFfp-HMMorV07FLmn" data-link-id="" data-link-type-id="url" class="" data-disclaimer-id="null" target="_blank" rel="noopener">Open an Account</a></p>
<p><span class="smallest"> *Some offers not available to Florida Residents.</span></p>
              </div>
            </div>
            <div class="slider_nav">
              <div class="swipe">
                <span class="icon icon-swipe" aria-hidden="true"></span>
                <p>Swipe</p><span class="sr-only"> the slider above</span>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>

    <footer class="footer">
  <div class="footer-rule"></div>
  <div class="top-container" role="button" id="top" tabindex="0" aria-label="Return to the top">
    <span class="icon icon-top" aria-hidden="true"></span>
    <span class="sr-only">Return to the </span>
    <span class="top-text">top</span>
  </div>
  <div class="container">

    <div class="footer-phone">
      <span class="icon icon-phone" aria-hidden="true"></span>
      <div class="footer-phone-number">
        <span class="sr-only">Call us at </span>
        <a href="tel:+13055397500">305.539.7500</a>
      </div>
    </div>

    <div class="footer-menu" role="navigation" aria-label="Footer">
      <ul class="banno-menu menu-6f57f1d0-8a41-11e5-ab1a-005056a30020">
                       <li class="menu-external">
        <a href="https://www.pnb.com/assets/files/WKJgfhaY/Remittance Transfers - ESignDisclosureandConsent (pdf ua).pdf" target="_blank">Remittance Transfers</a>
        
      </li><li class="menu-external">
        <a href="https://www.pnb.com/assets/files/NzWhMyRA/Internet Security Statement v2 (PDF-UA).pdf" target="_blank">Security</a>
        
      </li><li class="menu-external">
        <a href="https://www.pnb.com/privacy-notice" target="_blank">Privacy</a>
        
      </li><li class="menu-external">
        <a href="https://www.pnb.com/assets/files/uqmUdVj6/Legal Notices English (pdf ua).pdf" target="_blank">Legal Notices</a>
        
      </li><li class="menu-external">
        <a href="https://www.pnb.com/assets/files/jVKSOkzP/FraudAlert-010225.pdf" target="_blank">Fraud Alert</a>
        
      </li><li class="menu-external">
        <a href="http://www.consumer.ftc.gov/features/feature-0014-identity-theft" target="_blank">ID Theft</a>
        
      </li><li class="menu-external">
        <a href="https://adasitecompliance.com/xap_policy/?h=PNTBNK" target="_blank">Accessibility Policy</a>
        
      </li>
                     </ul>
    </div>

    <div class="footer-bottom">
      <span class="copytext">
        © <script>
          var d = new Date();
          var year = d.getFullYear();
          document.write(year);
        </script> Pacific National Bank.
      </span>
      <div class="ehl-fdic-container">
        <span class="ehl">
          <img src="/assets/img/ehl.png" srcset="/assets/img/ehl.png 1x, /assets/img/[email protected] 2x" alt="Equal Housing Lender">
        </span>
        <span class="fdic">
          <a href="https://www.fdic.gov" title="Member FDIC"><img src="/assets/img/fdic.png" srcset="/assets/img/fdic.png 1x, /assets/img/[email protected] 2x" alt="Member FDIC"></a>
        </span>
        <span class="superior">
          <img src="/assets/img/superior5.png" srcset="/assets/img/superior5.png 1x, /assets/img/[email protected] 2x" alt="Superior 5 Star Rating by Bauer Financial, Inc. www.bauerfinancial.com">
        </span>
        <span class="aplus">
          <img src="/assets/img/APlusHealthGradeBadge20.png" srcset="/assets/img/APlusHealthGradeBadge20.png 1x, /assets/img/[email protected] 2x" alt="A+ Health Grade and Stability Rating 2020 www.deposits.com">
        </span>
        <span class="adacomp">
          <a href="https://adasitecompliance.com/xap_policy/?h=PNTBNK"><img src="/assets/img/APolicy.png" srcset="/assets/img/APolicy.png 1x, /assets/img/[email protected] 2x" alt="Americans with Disabilities Act (ADA) Site Compliance, Accessibility Policy"></a>
        </span>
        <span class="footer-logo">
          <img src="/assets/img/pacific-national-bank-logo-vertical.png" alt="Pacific National Bank logo">
        </span>
      </div>
    </div>
  </div>
</footer>


    <div role="region" aria-label="Online Banking (Banca en l&#x00ed;nea)">
  <div id="olb" class="modal fade container" tabindex="-1" role="dialog" aria-labelledby="olbModalLabel-english" aria-modal="true" data-lang="en">
    <div class="modal-dialog" role="document">
      <div class="modal-header">
        <span class="olb-close" role="button" tabindex="0" data-dismiss="modal" aria-atomic="true">
          <span class="icon close" aria-hidden="true">×</span>
          <span class="sr-only" lang="en">Close online banking</span> 
          <span class="sr-only" lang="es">Cerrar banca en línea</span>
        </span>
        <h2 class="h3" aria-atomic="true">
          <span id="olbModalLabel-english" lang="en">Online Banking</span>
          <span id="olbModalLabel-espanol" lang="es" class="inactive">Banca en Línea</span>
        </h2>
        <div class="modal-link" aria-atomic="true"> [ 
          <span class="inactive olb-english"><a href="#english" class="open-olb-link-en" hreflang="en">in english</a></span>
          <span class="olb-espanol"><a href="#espanol" class="open-olb-link-es" hreflang="es">en español</a></span> ]
        </div>
      </div>
      <div class="modal-body">

            <div tabindex="-1" id="english" lang="en" aria-describedby="olbModalLabel-english">
              <form action="https://my.pnb.com/login" method="post" data-parsley-validate="">
                <div class="control-group form-inputs">
                  <div class="sr-only">English login</div>
                  <label for="englishId" class="sr-only">User ID</label>
                  <input type="text" class="olb-input input-medium" id="englishId" name="username" placeholder="user id*" data-parsley-required="true" data-parsley-errors-container="#olbErrors-english-user" data-parsley-required-message="User ID is required." required="" autocomplete="username">
                  <div id="olbErrors-english-user" role="alert"></div>
                  <div>
                    <button type="submit" class="btn olb-btn">Log In</button>
                  </div>
                </div>
              </form>
              <div class="olb-links">
                <p>
                  
                  
                </p>
              </div>
            </div>

            <div tabindex="-1" class="inactive" id="espanol" lang="es" aria-describedby="olbModalLabel-espanol">
              <form action="https://my.pnb.com/login" method="post" data-parsley-validate="">
                <div class="control-group form-inputs">
                  <div class="sr-only">Iniciar sesión en español</div>
                  <label for="spanishId" class="sr-only">Nombre de usuario</label>
                  <input type="text" class="olb-input input-medium" id="spanishId" name="username" placeholder="nombre de usuario" data-parsley-required="true" data-parsley-errors-container="#olbErrors-espanol-user" data-parsley-required-message="El nombre de usuario es requerido." autocomplete="username">
                  <div id="olbErrors-espanol-user" role="alert"></div>
                  <div>
                    <button type="submit" class="btn olb-btn">Iniciar sesión</button>
                  </div>
                </div>
              </form>
              <div class="olb-links">
                <p>
                  
                  
                </p>
              </div>
            </div>

      </div>
    </div>
  </div>
</div>

    <div role="region" aria-labelledby="searchModalLabel">
  <div id="search-mobile" class="modal fade container" tabindex="-1" role="dialog" aria-labelledby="searchModalLabel" aria-modal="true">
    <div class="modal-dialog" role="document">
      <div class="modal-header">
        <span class="search-close" role="button" tabindex="0" data-dismiss="modal" title="Close search">
          <span class="icon close" aria-hidden="true">×</span>
          <span class="sr-only">Close search</span>
        </span>
        <h2 class="h3" aria-atomic="true" id="searchModalLabel">Site Search</h2>
      </div>
      <div class="modal-body">
        <div class="mobile-search">
          <form method="GET" action="/search" role="search">
            <div class="control-group form-inputs">
              <label for="search-modal" class="sr-only">Type in your search terms (required)</label>
              <input class="search-input" placeholder="Type in your search terms" name="q" id="search-modal" type="text" required="">
            </div>
            <div>
              <button class="btn btn-search" type="submit">
                <span>Start search</span>
              </button>
            </div>
          </form>
        </div>
      </div>
    </div>
  </div>
</div>

    <script src="/assets/js/jquery.min.js"></script>
<script defer="" src="/assets/js/script.min.js?v=1739979904359"></script>


    <script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-55416786-38', 'auto');
  ga('send', 'pageview');

</script>



<script src="/assets/target/disclaimers.js?bh=8270cb" id="disclaimerscript" defer="defer" proceed="Proceed" cancel="Cancel"></script><script nomodule="nomodule" type="text/javascript">
            
    function ieWarning() {
      document.body.setAttribute("style", "padding-bottom: 120px;");
      var warning = document.createElement("section");
      warning.setAttribute("class", "ie-disclaimer");
      warning.setAttribute("style", "background-color: #000; color:#fff; padding: 10px 40px; position: fixed; bottom: 0; z-index: 1040; height: 120px;");
      warning.setAttribute("aria-label", "Important notice regarding browser support");
      var warningContent = 'Please note: As of February 15, 2022, this website will no longer function with this browser' +
      ' version. This website was built to support the use of modern browsers. The browser that you are currently using' +
      ' is no longer fully supported by Microsoft and is not considered a modern browser. To use this site, please open' +
      ' in a modern browser like Google Chrome, Firefox, Safari, or a currently supported version of Microsoft Edge.';
      warning.innerHTML = warningContent;
      var firstElement = document.body.children[0];
      document.body.insertBefore(warning, firstElement);
    }
    window.addEventListener("load", ieWarning);
  
          </script>
          
        </body></html>                               

Whois info of domain

Domain Name: PNB.COM
Registry Domain ID: 231250_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.register.com
Registrar URL: http://www.register.com
Updated Date: 2024-12-02T08:01:48Z
Creation Date: 1993-12-02T05:00:00Z
Registry Expiry Date: 2025-12-01T05:00:00Z
Registrar: Register.com, Inc.
Registrar IANA ID: 9
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.8777228662
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1.JH-CF.COM
Name Server: NS2.JH-CF.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-10T08:19:48Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass