[개발일지 1일차] 구글 애널리틱스 및 다크모드 적용

이고잉님의 열띤 강의와 함께..

지금 코드 한 줄을 이해하는게 중요한게 아니라 그 흐름을 아시는게 중요해요. -이고잉-

내가 만든 웹사이트에 누가, 몇명이나 들어오는지 궁금하지않으신가요?

Github을 이용해 만든 웹사이트이다. 이런 방법이 있는줄은 몰랐었는데 또 하나 배워가는것 같다.

https://sucong2.github.io/ai-school-1/index.html

index.html

<!doctype html>
<html>
<head>
    <title>WEB</title>
    <meta charset="utf-8">
    <style>
        h1{
            border-bottom:10px solid red;
            padding:30px;
        }
        
        @media all and (min-width: 480px){ 
            #container{
                display:grid;
                grid-template-columns: 150px 1fr;
            }

        }

        body{
            font-family: 'Palette Mosaic', cursive;
        }
    </style>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200&display=swap" rel="stylesheet">
</head>
<body>
    <input type="button" value="night" onclick="
        document.querySelector('body').style.backgroundColor = 'black';
        document.querySelector('body').style.color = 'white';
    ">
    <input type="button" value="day" onclick="
        document.querySelector('body').style.backgroundColor = 'white';
        document.querySelector('body').style.color = 'black';
    ">
    <h1><a href="index.html">WEB</a></h1>
    <div id="container">
        <ol>  
            <li><a href="1.html">html</a></li>
            <li><a href="2.html">css</a></li>
            <li><a href="3.html">JavaScript</a></li>
        </ol>
        <div>
            <h2>Welcome!</h2> 
            Hello <a href="http://info.cern.ch/hypertext/WWW/TheProject.html">WEB</a>
        </div>
    </div>


</body>
</html>

구글 애널리틱스 적용 모습

보고서를 통해 정확하고 잘 정리된 자료를 받아볼수가 있었다.

음,, 서버 그리고 깃?

내가 사용하는 환경이 잘못된건지 이해를 제대로 못해서 다른 방식으로 해서 그런진 모르겠지만,, VSCODE에서 깃헙 로그인하고 git push를 하려고 하는 과정이 그렇게 순탄하지만은 않았다. 어쩔수없이 수동으로 내가 깃헙에 들어가서 파일을 올리는 방법으로 했지만 VSCODE에서 바로 바로 올릴수있는 좋은 방법이 있는데 ,, ㅠ 나도 깔끔하게 한번 써보고싶다 .. !

이고잉님의 수업에서.

정말 예전부터 유튜브를 통해 알고있던 분이었는데 이렇게 대면은 아니지만 좋은 기회를 통해 비대면으로 실시간 강의를 들어보니 역시는 역시셨다 ,, 정말 깔끔하게 진행해주시고 목소리도 완전 귀에 쏙쏙 잘 들어왔다 ㅎㅎ 뭔가 성공한 덕후가 된 기분이랄까 ?

좋은 웹페이지 즐겨찾기