https://github.com/dream-ellie 웹사이트 따라만들기, 반응형 헤더편 (HTML, CSS, Javascript) CSS Flexbox 완전 정리 웹사이트 따라만들기, 반응형 헤더편 | 프론트엔드 개발자 입문편: HTML, CSS, Javascript https://www.youtube.com/watch?v=X91jsJyZofw https://dream-ellie.github.io/responsive-nav-bar/index.html # index.html <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″ /> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″ /> <link rel=”stylesheet” href=”style.css” /> <link href=”https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap” rel=”stylesheet” /> <title>Nav bar</title> <script src=”https://kit.fontawesome.com/2d323a629b.js” crossorigin=”anonymous” ></script> <script src=”main.js” defer></script> </head> <body> <!– Nav container –> <nav class=”navbar”> <!– Logo with text –> <div class=”navbar__logo”> <i class=”fab fa-accusoft”></i> <a href=””>DreamCoding</a> </div> <!– Menu –>…
Read More