Skip to main content

Posts

How To Make Responsive 3D Marquee |3D Marquee Animation| using HTML CSS

  <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>3D Marquee Effect</title> <style> html,body{ height: 400px; background: #a144ff; } .box{ display: flex; margin-top: 200px; } .inner{ width: 1000px; height: 240px; line-height: 200px; font-size: 6em; font-family: sans-serif; font-weight: 800; white-space: nowrap; overflow: hidden; box-shadow: 4px 6px 8px rgba(0, 0, 0, 0.5); } .inner:first-child{ background: indianred; color: #f1f1f1; transform-origin: right; transform: perspective(100px) rotateY(-15deg); } .inner:last-child{ background: lightcoral; color: #ff0; transform-origin: left; transform: perspective(100px) rotateY(15deg); } .inner span{ position: absolute; animation: marquee 5s linear infin
Recent posts

How To Make Live Character Count | HTML CSS JavaScript

  <!DOCTYPE html> <html> <head>     <meta charset="utf-8">     <meta name="viewport" content="width=device-width, initial-scale=1">     <title>SkycodingLab - Live Character Count Application</title>     <style>         *{             padding: 0;             margin: 0;             box-sizing: border-box;             font-family: "Poppins",sans-serif;         }         body{             background-color:#0078d4;         }         .container{             width: 400px;             position: absolute;             transform: translate(-50%,-50%);             top: 50%;             left: 50%;         }         textarea{             width: 100%;             resize: none;             background-color: #d2e8ff;             border: none;             font-size: 16px;             line-height: 28px;             padding: 15px;             border-radius: 4px;             color: #121f3c;             outline: none;  

How To Make a Calculator App using HTML CSS JavaScript

HTML ):- <! DOCTYPE html >   < head >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" />     < link href = "https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500&display=swap"       rel = "stylesheet"     />     < title >SkyCodingLab - Calculator</ title >     < link rel = "stylesheet" href = "style.css" />   </ head >   < body >     < div class = "calculator" >       < div class = "display" >         < input type = "text" placeholder = "0" id = "input" disabled />       </ div >       < div class = "buttons" >         < input type = "button" value = "AC" id = "clear" />         < input type = "button" value = "DEL" id = "erase" />         < inpu

Tac Tac Game Responsive in HTML CSS & JavaScript

  HTML < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title >SkyCodingLab</ title >     < link rel = "stylesheet" href = "style.css" >     < script src = "./index.js" ></ script >     < link rel = "preconnect" href = "https://fonts.gstatic.com" >     < link href = "https://fonts.googleapis.com/css2?family=Itim&display=swap" rel = "stylesheet" > </ head > < body >     < main class = "back_ground" >         < section class = "title" >             < h1 >Tic Tac Game</ h1 >         </ section >         < section class = "display" >  

Responsive Navigation Bar using HTML And CSS

  HTML <! DOCTYPE html >   < head >     < meta charset = "utf-8" >     < title >Responsive Navigation | SkyCodingLab</ title >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />     < link rel = "stylesheet" href = "style.css" >   </ head >   < body >     < nav >         < input type = "checkbox" id = "check" >         < label for = "check" class = "checkbtn" >         < i class = "fas fa-bars" ></ i >         </ label >         < label class = "logo" >SkyCodingLab</ label >         < ul >         < li >< a class = "active" href = "#" >Home</ a ><

Simple Navbar With Flexbox in HTML, CSS| Create a Navigation Bar with Flexbox [Free Source Code] No Talking

HTML <! DOCTYPE html > < html >     < head >         < meta charset = "utf-8" >         < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >         < title >Music App</ title >         < meta name = "description" content = "" >         < meta name = "viewport" content = "width=device-width, initial-scale=1" >         < link rel = "stylesheet" href = "css.css" >     </ head >     < body >         < div class = "header1" >           < div class = "head2" >                            < h1 >SkyCodingLab</ h1 >             </ div >             < div class = "head3" >                 < ul >                     < li >< a href = "#" >Home</ a ></ li >                     < li >< a href = "#&quo

Simple Responsive Side Navigation Bar in HTML CSS And JavaScript | Dashboard Sidebar Menu [Free Source Code]

  HTML CODE =============== <! DOCTYPE html >   < head >     < html lang = "en" dir = "ltr" ></ html >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < link rel = "stylesheet" href = "style.css" >     < link href = 'https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel = 'stylesheet' >   </ head > < body >   < div class = "sidebar_menu" >         < div class = "Logo" >         < i class = 'bx bxl-slack icon' ></ i >           < div class = "Text_Logo" >SkyCodingLab</ div >           < i class = 'bx bx-menu' id = "Button" ></ i >         </ div >       < ul class = "Nav_Item" >           < li >               < i class =