개발일지01_HTML, CSS, Javascript

백우진·2022년 4월 18일
0

9to9 앞으로 4달 동안 하루에 12시간씩 진행될 스파르타 내일배움 캠프가 시작됐다.

아침에 Zoom으로 간단한 OT가 진행되었고 오후에는 앞으로 5월 2일까지 함께할 팀원들과 만났다.

오늘 학습한 내용은 웹 개발의 기초 HTML, CSS, Javascript에 대해 간단하게 배웠고 대학교에서 배운 내용이라 크게 어려울건 없었다.

첫날이라 아침에 일어나기도 힘들었고 아직 12시간 동안 앉아있는 게 힘들지만, 차츰 적응해나갈 수 있을 것이다.

오늘 숙제로 만든 팬페이지 코드를 첨부하며 마무리하고 쉬러가야겠다!

<!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/bootstrap@5.0.2/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/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
            integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
            crossorigin="anonymous"></script>

    <title>10cm 팬명록</title>

    <link href="https://fonts.googleapis.com/css2?family=Gowun+Dodum&display=swap" rel="stylesheet">

    <style>
        * {
            font-family: 'Gowun Dodum', 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://image.genie.co.kr/Y/IMAGE/IMG_MUZICAT/IV2/Genie_Magazine/9015/Mgz_Main_Top_20200922110103.jpg/dims/resize/Q_80,0');
            background-position: center;
            background-size: cover;

            color: white;

            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .mypost {
            width: 95%;
            max-width: 500px;
            margin: 20px auto 0px auto;
            padding: 20px;
            box-shadow: 0px 0px 3px 0px gray;
        }

        .card {
            width: 95%;
            max-width: 500px;
            margin: 20px auto 0px auto;
            padding: 10px;
        }

        .mybtns {
            display: flex;
            flex-direction: row;
            align-items: center;


            margin-top: 20px;
        }

    </style>
</head>

<body>
<div class="mytitle">
    <h1>10cm 팬명록</h1>
</div>
<div class="mypost">
    <div class="form-floating mb-3">
        <input type="text" class="form-control" id="floatingInput" placeholder="name">
        <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="mybtns">
        <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">호빵맨</footer>
        </blockquote>
    </div>
</div>
<div class="card">
    <div class="card-body">
        <blockquote class="blockquote mb-0">
            <p>새로운 앨범 너무 멋져요!</p>
            <footer class="blockquote-footer">호빵맨</footer>
        </blockquote>
    </div>
</div>
<div class="card">
    <div class="card-body">
        <blockquote class="blockquote mb-0">
            <p>새로운 앨범 너무 멋져요!</p>
            <footer class="blockquote-footer">호빵맨</footer>
        </blockquote>
    </div>
</div>
</body>

</html>

1개의 댓글

comment-user-thumbnail
2022년 4월 19일

지금은 다 아시는 내용이니 괜찮지만 어려운 내용 배울때는 통째로 첨부하는것보다 정리된게 나중에 찾아볼때는 편할 수 있어요 ㅎㅎ

답글 달기