0 0
UTF-8 CRLF
Port:5500
Explorer
Open Editors
Folders
Outline
Timeline
VS-CODE
  • css
  • js
  • projects
  • webfonts
  • index.html
  • script.js
  • style.css
  • all.min.css
  • Bootstarp.grid.css
  • Bootstarp.grid.css.map
  • Bootstarp.grid.min.css
  • Bootstarp.grid.min.css.map
  • Bootstarp.grid.rtl.css
  • Bootstarp.grid.rtl.css.map
  • Bootstarp.grid.reboot.css
  • SOURCE CONTROL

    Install Git, apopular source control system,to track code changes and collaborater with others.Leran more in our Git guides.

    After installing,please reload(or troubleshoot). Additinoal soure control providers can be installed from the Marketplace.

    RUN AND DEBUG:R...

    To customize Run and Debug create a lunch.json file.


    Show all automatic debug configurations
    .

    EXTE...
    INSTALLED 3

    Code Runner

    RunC,C++,Java,JS,P...

    Jun Han

    JavaScript (ES6) code...

    Code snippets for Java...

    charalampos karypi...

    Live Server

    Launch a development...

    Ritwick Dey
    index.html
    style.css
    script.js

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

    13

    14

    15

    16

    17

    18

    19

    20

    21

    22

    23

    24

    25

    26

    27

    28
    !DOCTYPE html
    html lang="em"
    Head
    meta charset="UTF-8"
    meta name="viewport" content="IE=edge"
    name="viewport" content="width=device-width,initial-scale=1.0"


    title VS-Code / title
    link rel="stylesheet" href="css/all.min.css"
    link rel="stylesheet" href="css/fontawesome.min.css"
    link rel="stylesheet" href="style.css"
    Head
    body
    div class="container"
    div class="navbar"
    / div
    / div
    / body
    * {
    margin : 0 ;
    padding : 0 ;
    box-sizing : border-box ;
    font-family : sans-serif ;
    user-select : none ;
    }
    .container {
    height : 100vh ;
    width : 100% ;
    display : flex ;
    align-items : center ;
    justify-content : space-between ;
    }
    let toggler=document. querySelector(".toggler") ;
    let navItemUl=document. querySelector(".navItem ul") ;


    toggler. addEventListener("click", ()=>{
    navItemUl. classList. toggle ( "active" )

    });