shubh - HTMLify profile

shubh's Profile Picture

shubh

87 Files

18941 Views

Latest files of /shubh/

javascript/ shubh/javascript/
30 Items
  • DOM Manipulation.js
  • StringMethods.js
  • innerText.html
  • ToggleButton.html
  • onclick.html
  • javas.js
  • OTP.css
  • README.md
  • html css project/ shubh/html css project/
    10 Items
  • Doraemon_Image2.png
  • Doraemon_Image6.png
  • BackgroundImage.png
  • Doraemon_Image1.png
  • Doraemon_Image3.png
  • README.md
  • Doraemon_Image4.png
  • style.css
  • VID-20220908-WA0004.mp4 shubh/VID-20220908-WA0004.mp4
    1499 Views
    19 Comments
    Media file
    LPBGI.jpg shubh/LPBGI.jpg
    118 Views
    0 Comments
    Media file
    jewerlery.jpg shubh/jewerlery.jpg
    183 Views
    0 Comments
    Media file
    Landing Page.html shubh/Landing Page.html
    396 Views
    0 Comments
    <!DOCTYPE html>
    <html>

    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="LandingPageStyle.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
    LandingPageStyle.css shubh/LandingPageStyle.css
    123 Views
    0 Comments
    * {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    }

    body {
    background-image: url("LPBGI.jpg");
    Doraemon_Image1.png shubh/Doraemon_Image1.png
    203 Views
    0 Comments
    Media file
    Doraemon_Image2.png shubh/Doraemon_Image2.png
    208 Views
    0 Comments
    Media file
    Doraemon_Image3.png shubh/Doraemon_Image3.png
    214 Views
    0 Comments
    Media file
    Doraemon_Image4.png shubh/Doraemon_Image4.png
    213 Views
    0 Comments
    Media file
    Doraemon_Image5.png shubh/Doraemon_Image5.png
    212 Views
    0 Comments
    Media file
    Doraemon_Image6.png shubh/Doraemon_Image6.png
    210 Views
    0 Comments
    Media file
    Image Cards.html shubh/Image Cards.html
    462 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">

    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Image Cards</title>
    <style>
    BackgroundImage.png shubh/BackgroundImage.png
    143 Views
    0 Comments
    Media file
    OTP Generator.htm shubh/OTP Generator.htm
    361 Views
    0 Comments
    Media file
    OTP.css shubh/OTP.css
    160 Views
    0 Comments
    body {
    margin: 0;
    padding: 0;
    background: linear-gradient(120deg, rgb(10, 10, 208), rgb(246, 3, 3));
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;

    OTP.js shubh/OTP.js
    218 Views
    0 Comments
    function generateOTP(){
    let otp = " ";
    let digits = "0123456789";

    for(i=0;i<4;i++){
    otp += digits [Math.floor(Math.random()*10)];

    }
    semantic interpretation.ppt shubh/semantic interpretation.ppt
    179 Views
    0 Comments
    Media file
    bulb.html shubh/bulb.html
    326 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="bulb.css">
    </head>
    bulb.css shubh/bulb.css
    140 Views
    0 Comments
    body{
    background-color: black;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    Ractangle.html shubh/Ractangle.html
    347 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">

    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="Ractangle.css">
    Ractangle.css shubh/Ractangle.css
    149 Views
    0 Comments
    *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    html,body{
    width: 100%;
    height: 100%;
    Ractangle.js shubh/Ractangle.js
    203 Views
    0 Comments
    let ract = document.querySelector("#ractangle");
    ract.addEventListener("mousemove",function(details){
    let ractloc = ract.getBoundingClientRect();
    let insideractval = details.clientX - ractloc.left;
    if (insideractval < ractloc.width/2){
    let redColor = gsap.utils.mapRange(0,ractloc.width/2,255,0,insideractval);
    gsap.to(ract ,{
    backgroundColor: `rgb(${redColor},0,0)`,
    cursoreffect.js shubh/cursoreffect.js
    187 Views
    0 Comments
    window.addEventListener("mousemove", function(details){
    let ract = this.document.querySelector(".ract");
    let mouseval = gsap.utils.mapRange(0,window.innerWidth,100+ract.getBoundingClientRect().width/2,window.innerWidth-(100+ract.getBoundingClientRect().width/2),details.clientX)
    gsap.to(".ract",{
    left:mouseval,
    ease:Power3,
    });
    });
    cursoreffect.css shubh/cursoreffect.css
    130 Views
    0 Comments
    *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    html,body{
    width: 100%;
    height: 100%;
    Cursoreffect.html shubh/Cursoreffect.html
    320 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="cursoreffect.css">
    </head>
    index.html shubh/index.html
    332 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>ITintern</title>
    <link rel="stylesheet" href="style.css" />
    <head>
    style.css shubh/style.css
    190 Views
    0 Comments
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    html,
    body {
    script.js shubh/script.js
    211 Views
    0 Comments
    sidenav = document.querySelector(".sidenav");
    menuIcon = document.querySelector(".ri-menu-line");
    navCloseBtn = document.querySelector(".ri-close-large-line");
    menuIcon.addEventListener("click",()=>{
    sidenav.style.display = "flex";

    });
    navCloseBtn.addEventListener("click",()=>{
    bk1.jpg shubh/bk1.jpg
    155 Views
    0 Comments
    Media file
    home.html shubh/home.html
    412 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>ITintern</title>
    <link rel="stylesheet" href="home.css" />
    <head>
    home.css shubh/home.css
    210 Views
    0 Comments
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    html,
    body {
    home.js shubh/home.js
    265 Views
    0 Comments
    sidenav = document.querySelector(".sidenav");
    menuIcon = document.querySelector(".ri-menu-line");
    navCloseBtn = document.querySelector(".ri-close-large-line");
    menuIcon.addEventListener("click",()=>{
    sidenav.style.display = "flex";

    });
    navCloseBtn.addEventListener("click",()=>{
    about1.jpg shubh/about1.jpg
    142 Views
    0 Comments
    Media file
    about-1.jpg shubh/about-1.jpg
    59 Views
    0 Comments
    Media file
    App Development.jpg shubh/App Development.jpg
    150 Views
    0 Comments
    Media file
    bgimg.jpg shubh/bgimg.jpg
    128 Views
    0 Comments
    Media file
    contact1.jpg shubh/contact1.jpg
    123 Views
    0 Comments
    Media file
    System Design.jpg shubh/System Design.jpg
    146 Views
    0 Comments
    Media file
    Web Developer.jpg shubh/Web Developer.jpg
    64 Views
    0 Comments
    Media file
    Website.jpg shubh/Website.jpg
    139 Views
    0 Comments
    Media file
    about2.jpg shubh/about2.jpg
    130 Views
    0 Comments
    Media file
    annie-spratt-QckxruozjRg-unsplash.jpg shubh/annie-spratt-QckxruozjRg-unsplash.jpg
    51 Views
    0 Comments
    Media file
    App.jpg shubh/App.jpg
    44 Views
    0 Comments
    Media file
    certification-concept-illustration.png shubh/certification-concept-illustration.png
    69 Views
    0 Comments
    Media file
    courses-internship.css shubh/courses-internship.css
    59 Views
    0 Comments
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    html,
    body {
    courses-intership.html shubh/courses-intership.html
    4 Views
    0 Comments
    File is locked
    jason-goodman-Oalh2MojUuk-unsplash.jpg shubh/jason-goodman-Oalh2MojUuk-unsplash.jpg
    58 Views
    0 Comments
    Media file