[明日勉强するキャンプ]-日志01

31044 ワード

感想


今日は明日の学習キャンプの初日です!
少なくとも12時間座って授業を受けるのは容易ではない.
初日は疲れましたが、これも慣れると思います.
さらに、今週は、直前の講座をすばやく終えた後、3日間のミニプロジェクトを行う.
これは選手たちに役に立つと思いますが、今の準備を最善を尽くすべきだと思います.

💻 結果


これは
  • の授業で配置された宿題で書かれたコードです.
  • <!doctype html>
    <html lang="en">
    
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    
        <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
              integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
        <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
                integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
                crossorigin="anonymous"></script>
        <link href="https://fonts.googleapis.com/css2?family=Stylish&display=swap" rel="stylesheet">
        <title>나만의 방명록 만들기</title>
        <style>
            * {
                font-family: 'Stylish', sans-serif;
            }
    
            .mytitle {
                width: 100%;
                height: 250px;
    
                background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://static-storychat.pstatic.net/1788347_28879797/dj03ac2i391e20.gif');
                background-position: center;
                background-size: 300px;
    
                color: white;
    
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
    
            .myposting {
                max-width: 500px;
                width: 95%;
                margin: 20px auto 0 auto;
                box-shadow: 0px 0px 3px 0px gray;
                padding: 20px;
            }
    
            .mybtn {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                margin-top: 10px;
            }
    
            .mybtn > button {
                margin-right: 10px;
            }
    
            .card {
                max-width: 500px;
                width: 95%;
                margin: 20px auto 0 auto;
                padding: 20px;
            }
        </style>
        <script>
    
            $(document).ready(function () {
                $.ajax({
                    type: "GET",
                    url: "http://spartacodingclub.shop/sparta_api/weather/incheon",
                    data: {},
                    success: function (response) {
                        let temp = response['temp']
                        $('#temp').text(temp)
                    }
                });
            });
        </script>
    </head>
    
    
    <body>
        <div class="mytitle">
            <h1>말포이 팬명록</h1>
            <p>현재기온:<span id="temp">00.0</span></p>
        </div>
        <div class="myposting">
            <div class="form-floating mb-3">
                <input type="email" class="form-control" id="floatingInput" placeholder="[email protected]">
                <label for="floatingInput">닉네임</label>
            </div>
            <div class="form-floating">
                <textarea class="form-control" placeholder="Leave a comment here" id="floatingTextarea2"
                          style="height: 100px"></textarea>
                <label for="floatingTextarea2">응원댓글</label>
            </div>
            <div class="mybtn">
                <button type="button" class="btn btn-dark">작성하기</button>
    
            </div>
        </div>
        <div class="card">
            <div class="card-body">
                <blockquote class="blockquote mb-0">
                    <p>우리 말포이 잘생겼다.</p>
                    <footer class="blockquote-footer">지나가던 머글1
                    </footer>
                </blockquote>
            </div>
        </div>
        <div class="card">
            <div class="card-body">
                <blockquote class="blockquote mb-0">
                    <p>우리 말포이 잘생겼다.</p>
                    <footer class="blockquote-footer">지나가던 머글2
                    </footer>
                </blockquote>
            </div>
        </div>
        <div class="card">
            <div class="card-body">
                <blockquote class="blockquote mb-0">
                    <p>우리 말포이 잘생겼다.</p>
                    <footer class="blockquote-footer">지나가던 머글3
                    </footer>
                </blockquote>
            </div>
        </div>
    </body>
    
    </html>