marielunderground.com Review

TitletagDescriptiontaglanguage
UNDERGROUND English
Alexarank
382815
Ip adress173.201.181.15Nameserverns14.domaincontrol.com
ns13.domaincontrol.com
Status code200
robots.txt -http://marielunderground.com/robots.txt
 <!DOCTYPE html>

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

        <!-- SEO -->
<title>UNDERGROUND</title><meta name="description" content="At Mariel"/>
<!-- og meta for facebook, googleplus -->
<meta property="og:title" content="UNDERGROUND"/>
<meta property="og:description" content="At Mariel"/>
<meta property="og:url" content="http://marielunderground.com"/>
<meta property="og:type" content="website" />
<meta property="og:image" content="http://marielunderground.com/wp-content/uploads/2025/06/bkg-1-1024x512.jpg"/>

<!-- twitter meta -->
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:title" content="UNDERGROUND"/>
<meta name="twitter:description" content="At Mariel"/>
<meta name="twitter:url" content="http://marielunderground.com"/>
<meta name="twitter:image" content="http://marielunderground.com/wp-content/uploads/2025/06/bkg-1-1024x512.jpg"/>

<link rel="icon" href="http://marielunderground.com/wp-content/uploads/2022/04/cropped-Mariel_Underground_Icon-32x32.png" sizes="32x32" />
<link rel="icon" href="http://marielunderground.com/wp-content/uploads/2022/04/cropped-Mariel_Underground_Icon-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="http://marielunderground.com/wp-content/uploads/2022/04/cropped-Mariel_Underground_Icon-180x180.png" />
<meta name="msapplication-TileImage" content="http://marielunderground.com/wp-content/uploads/2022/04/cropped-Mariel_Underground_Icon-270x270.png" />
<link rel="stylesheet" href="http://marielunderground.com/wp-content/plugins/cmp-coming-soon-maintenance/themes/hardwork/style.css?v=4.1.15" type="text/css" media="all">
<link rel="stylesheet" href="http://marielunderground.com/wp-content/plugins/cmp-coming-soon-maintenance/css/animate.min.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" rel="stylesheet" >
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:700%7CMontserrat:400,700,400&amp;subset=latin-ext,cyrillic,latin,vietnamese,cyrillic-ext" rel="stylesheet">


        <style>
            body,input {font-family:'Montserrat', 'sans-serif';color:#ffffff;}
                            .social-list {background-color: rgba(0,0,0,0.4);}
                            a {color:#ffffff;}
            h1,h2,h3,h4,h5,h6 {font-family:'Playfair Display', 'sans-serif';}
            body {font-size:17px; letter-spacing: 0px; font-weight:400;; }
            h1:not(.text-logo),h2, h3,h4,h5,h6,.text-logo-wrapper {font-size:2.3529411764706em;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>


<!-- custom logo height -->
<style>
    @media screen and (min-width:1024px) {
    .logo-wrapper img {max-height: 500px}
    }
</style>


    </head>


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

         <div id="background-image" class="image" style="background-image:url('http://marielunderground.com/wp-content/uploads/2025/06/bkg-1-scaled.jpg')"></div><div class="background-overlay solid-color" style="background-color:#0a0a0a;opacity:0"></div>
        </div>

        
        <section class="section section-body">
            <div class="logo-wrapper image"><a href="https://caveauofficial.com/" style="text-decoration:none"><img src="http://marielunderground.com/wp-content/uploads/2025/06/MU-TXT-1.png" class="graphic-logo" alt="logo"></a></div>         
         </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 = 'http://marielunderground.com/wp-admin/admin-ajax.php';
        var {pathname} = new URL(ajaxWpUrl);
        var ajaxurl = `${location.protocol}//${location.hostname}${pathname}`;
        var security = '586d92231b';
        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: Thu, 28 Aug 2025 10:54:19 GMT
Server: Apache
X-Powered-By: PHP/7.4.33
X-Pingback: http://marielunderground.com/xmlrpc.php
Expires: Wed, 11 Jan 1984 05:00:00 GMT
Cache-Control: no-cache; private
Upgrade: h2,h2c
Connection: Upgrade, Keep-Alive
Vary: Accept-Encoding
Content-Encoding: br
Content-Length: 2116
Keep-Alive: timeout=5
Content-Type: text/html; charset=UTF-8

iframe