oband.hu Review

TitletagDescriptiontaglanguage
Oband.hu Hungarian
Alexarank
138421
Ip adress185.51.191.65Nameserverns.tns4.eu
ns.tns1.eu
ns.tns3.eu
ns.tns2.eu
Status code200
robots.txt -http://oband.hu/robots.txt
 <!DOCTYPE html>

<html lang="hu">
    <head>
    	<meta charset="UTF-8">
    	<meta name="viewport" content="width=device-width, initial-scale=1">

        <!-- SEO -->
<title>Oband.hu</title><meta name="description" content="Dress your Wrist"/>
<!-- og meta for facebook, googleplus -->
<meta property="og:title" content="Oband.hu"/>
<meta property="og:description" content="Dress your Wrist"/>
<meta property="og:url" content="https://oband.hu"/>
<meta property="og:type" content="website" />
<meta property="og:image" content=""/>

<!-- twitter meta -->
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:title" content="Oband.hu"/>
<meta name="twitter:description" content="Dress your Wrist"/>
<meta name="twitter:url" content="https://oband.hu"/>
<meta name="twitter:image" content=""/>

<link rel="icon" href="https://oband.hu/wp-content/uploads/2023/03/cropped-logo_icon-32x32.png" sizes="32x32" />
<link rel="icon" href="https://oband.hu/wp-content/uploads/2023/03/cropped-logo_icon-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://oband.hu/wp-content/uploads/2023/03/cropped-logo_icon-180x180.png" />
<meta name="msapplication-TileImage" content="https://oband.hu/wp-content/uploads/2023/03/cropped-logo_icon-270x270.png" />
<meta name="robots" content="noindex,nofollow" />
<link rel="stylesheet" href="http://oband.hu/wp-content/plugins/cmp-coming-soon-maintenance/themes/hardwork/style.css?v=4.1.13" type="text/css" media="all">
<link rel="stylesheet" href="http://oband.hu/wp-content/plugins/cmp-coming-soon-maintenance/css/animate.min.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" rel="stylesheet" >
<link href="https://fonts.googleapis.com/css?family=Poppins:700%7CPoppins:400,700,400&amp;subset=devanagari,latin-ext,latin" rel="stylesheet">


        <style>
            body,input {font-family:'Poppins', 'sans-serif';color:#0a0a0a;}
                            .social-list {background-color: rgba(0,0,0,0.4);}
                            a {color:#0a0a0a;}
            h1,h2,h3,h4,h5,h6 {font-family:'Poppins', 'sans-serif';}
            body {font-size:16px; letter-spacing: 0px; font-weight:400;; }
            h1:not(.text-logo),h2, h3,h4,h5,h6,.text-logo-wrapper {font-size:1.5em;letter-spacing: 0px; font-weight:700;font-style: normal;; }
            h1 {font-weight:700;font-style: normal;;}
        </style>

        

<style>
    .wp-video {margin: 0 auto;}
    .wp-video-shortcode {max-width: 100%;}
    .grecaptcha-badge {display: none!important;}
    .text-logo {display: inline-block;}
    #gdpr-checkbox {-webkit-appearance: checkbox;-moz-appearance: checkbox;width: initial;height: initial;}
    #counter.expired {display: none; }
    input, button {
        box-shadow: inset 0 0 0 0 !important;
        -webkit-box-shadow: inset 0 0 0 0 !important;
        -webkit-appearance: none;
        outline: none;
    }
</style>




    </head>


    <body id="body">
        <div id="background-wrapper">

         <div id="background-image" class="color loaded" style="background-color:#ffffff"></div>
        </div>

        
        <section class="section section-body">
            <h2 class="cmp-title animated ">Hamarosan visszatérünk!</h2><p>Egy kis karbantartást végzünk webshopunkban. Maradj a közelben, nemsokára indulunk.</p>
         
         </section>
        
    <!-- Fade in background image after load -->
    <script>
        window.addEventListener("load",function(event) {
            init();
        });

        function init(){

            var image = document.getElementById('background-image');
            var body = document.getElementById('body');
            
            if ( image === null ) {
                image = document.getElementById('body');
            } 

            if ( image != null ) {
                if ( image.className !== 'image-unsplash') {
                    image.classList.add('loaded');
                    body.classList.add('loaded');
                }
            }

                    }
    </script>

    
    <script>
        /* Subscribe form script */
        var ajaxWpUrl = 'https://oband.hu/wp-admin/admin-ajax.php';
        var {pathname} = new URL(ajaxWpUrl);
        var ajaxurl = `${location.protocol}//${location.hostname}${pathname}`;
        var security = 'c47ef37944';
        var msg = '';
        subForm = function( form, resultElement, emailInput, firstnameInput, lastnameInput, token = '' ) {
            if ( emailInput.value !== '' ) {
                const firstname = firstnameInput === null ? '' : firstnameInput.value;
                const lastname = lastnameInput === null ? '' : lastnameInput.value;

                fetch( ajaxurl, {
                    method: 'POST',
                    headers: {
                        'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8',
                        'Access-Control-Allow-Origin': '*',
                    },
                    body: `action=niteo_subscribe&ajax=true&form_honeypot=&email=${ encodeURIComponent(emailInput.value) }&firstname=${ encodeURIComponent(firstname) }&lastname=${ encodeURIComponent(lastname) }&security=${ security }&token=${ token }`,
                    credentials: 'same-origin'
                } )
                .then( (res) => {
                    return res.json();
                } )
                .then( (data) => {
                    resultElement.innerHTML = data.message; // Display the result inside result element.
                    form.classList.add('-subscribed');
                    if (data.status == 1) {
                        form.classList.remove('-subscribe-failed');
                        form.classList.add('-subscribe-successful');
                        emailInput.value = '';
                        firstnameInput ? firstnameInput.value = '' : null;
                        lastnameInput ? lastnameInput.value = '' : null;
                        
                    } else {
                        form.classList.add('-subscribe-failed');
                    }
                } )
                .catch(function(error) { console.log(error.message); });

            } else {
                resultElement.innerHTML = 'Oops! Email is empty.';
            }
        }
    </script>

<!-- Build by CMP – Coming Soon Maintenance Plugin by NiteoThemes -->
<!-- Visit plugin page https://wordpress.org/plugins/cmp-coming-soon-maintenance/ -->
<!-- More CMP Themes on https://niteothemes.com -->
    </body>

</html>
HTTP/1.1 200 OK
Date: Wed, 20 Aug 2025 04:04:41 GMT
Server: Apache
X-Powered-By: PHP/7.4.33
Expires: Wed, 11 Jan 1984 05:00:00 GMT
Cache-Control: no-cache; private
Content-Encoding: gzip
Vary: Accept-Encoding
Upgrade: h2,h2c
Connection: Upgrade, Keep-Alive
Keep-Alive: timeout=5, max=100
Transfer-Encoding: chunked
Content-Type: text/html; charset=UTF-8

iframe