https://sujeet.live/p/theme/

Submitted URL:
https://sujeet.live/Redirected
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 10 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

Console log messages · 1 found

Messages logged to the web console

HTML

The raw HTML body of the page

<!DOCTYPE html><html><head>
       
        <style>
            
    body {
    margin: auto;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: auto;
    background: linear-gradient(315deg, rgba(101,0,94,1) 3%, rgba(60,132,206,1) 38%, rgba(48,238,226,1) 68%, rgba(255,25,25,1) 98%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}

.myname{
    
     height:250px;
    width:400px;
    background-color:none;
    opacity:0.6;
    position:fixed;
    right:40px;
    top:0px;
    border-radius:30px;
    color:white;
    padding:20px;
    font-size:1.3em;
    
}
.missiondiv{
    
    height:250px;
    width:600px;
    background-color:grey;
    opacity:0.6;
    position:fixed;
    left:30px;
    top:70px;
    border-radius:30px;
    color:white;
    padding:20px;
    font-size:1.3em;
}

.interestfielddiv{
    
    height:250px;
    width:600px;
    background-color:none;
    opacity:0.6;
    position:fixed;
    left:30px;
    top:350px;
    border-radius:30px;
    color:white;
    padding:20px;
    font-size:1.2em;
}

.personalitydiv{
    
    
    height:250px;
    width:300px;
    background-color:none;
    opacity:0.6;
    position:fixed;
    right:30px;
    top:430px;
    border-radius:30px;
    color:white;
    padding:20px;
    font-size:1.1em;
    
}

.countdown{
    position:fixed;
    top:5px;
    left:0px;
    width:100%;
    height:50px;
   
}



@media only screen and (max-width: 480px) {
   .missiondiv {
      height:250px;
    width:600px;
    background-color:grey;
    opacity:0.6;
    position:fixed;
    left:30px;
    top:480px;
    border-radius:30px;
    color:white;
    padding:20px;
    font-size:1.3em;
   }
}

        </style>
        
          <link rel="stylesheet" type="text/css" media="only screen and (max-device-width: 480px)" href="mobile.css">
    </head>
    <body>
          <div>
     <div class="wave"></div>
     <div class="wave"></div>
     <div class="wave"></div>
  </div>
  
  <div class="myname">
      
        <h1> Sujeet Nag </h1>
        
        <img src="sujeetpic.jpg" height="330px" width="330px">
  </div>
 
   
   
  <div class="missiondiv">
       <h3> Mission Statement </h3>
    <p> (A quest for excellence with relentless efforts of intellectual integrity)</p>
    <ul>
        <li> Architecting depth of understanding and innovating new levels of efficiency </li>
        <li> Deep Exploration in search of utilities and potentials </li>
        <li> Spreading light of humanity and love</li>
    </ul>
        
  </div>
       
        
        <div class="interestfielddiv">
            
              <h3> Fields of Interests</h3>
        <ul>
            <li> Computer Science and information Systems</li>
            <li> Machine learning and AI</li>
            <li> Optimization Algorithms </li>
            <li> Theories of Management &amp; Systems of Administration </li>
            <li> Biochemistry</li>
            <li> Clinical Psychology </li>
            <li> Vedic Astrology </li>
            <li> Kundalini Yoga &amp; Spiritual practices </li>
        </ul>
        
            
        </div>
        
        
        <div class="personalitydiv">
            
              <h4>Personality Type</h4>
        <ul>
            <li> MBTI - INFJ </li>
            <li> Enneagram - 5w6 </li>
            <li> Zodiac - Aquarius</li>
        </ul>
            
        </div>
        <br>
        <br>
       
        
        <br>
        <br>
        <br>
         <br>
        <br>
       
        
        <br>
        <br>
        <br>
        
        
         <br>
        <br>
       
        
        <br>
        <br>
        <br>
        
        
        <div class="countdown">
             
             <progress class="progressbar" id="file" value="0" max="100" width="100%"> 32% </progress>
             
         </div>
      
        
        <script>
        
        
         function loadprofile(){
                
                window.location = "https://sujeet.live/p";
                
            }
            
            setTimeout(loadprofile,15000);
          
            
        
         var delay = 5;
            var dfactor = Math.round(100/delay);
            
            
            var delayvalue = delay*1000;
            
            function progressvalue(){
                
                var progressvalue =  document.getElementById("file").value;
                progressvaluex = progressvalue +(dfactor/250);
                
                if(progressvaluex == 100){
                    
                    window.location = "https://sujeet.live/p";
                }
                document.getElementById("file").value = progressvaluex;
               
            }
            
            var countx = window.setInterval(function(){
                
                progressvalue();
                
            },1);
           
           
           
          
            
        </script></body></html>