奮い立つAIバックエンドWeb開発の挑戦


2021-12-13

AIバックエンドのWeb開発に豪快に取り組んでいる。


2週間前まで、私の懐には「Hello Codingが一口で食べたPython」が1冊しかなかった。


しかし2021年12月13日(月)よりAI Web開発者になるため「スパルタ明日学習キャンプAI」に参加。


まず何か作ろう


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>로그인페이지</title>
    <link href="https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&display=swap" rel="stylesheet">
    <style>
        * {
            font-family: 'Nanum Pen Script', cursive;
        }
        .mytitle {

            width: 300px;
            height: 200px;

            color:black;

            text-align: center;

            background-image: url("https://www.dogdrip.net/dvs/b/i/16/08/25/18564339/302/956/105/44f0963ab18c3104efff5ea3c07749dd.jpg");
            background-size : cover;
            background-position: center;

            border-radius: 10px;

            padding-top: 40px;
        }
        .wrap {
            width: 300px;
            margin: auto;
        }
    </style>
</head>
<body>
    <div class="wrap">
        <div class="mytitle">
            <h1>로그인 페이지</h1>
            <h5>아이디, 비밀번호를 입력해주세요</h5>
        </div>
        <p>ID: <input type="text"/></p>
        <p>PW: <input type="text"/></p>
        <button> 로그인하기</button>
    </div>

</body>

</html>
かわいいログインページを作成しました.
[2021.12.13 To do List]
1.サーバとクライアントの役割を理解し、HTMLとCSSの基礎知識を理解する.
2.Pythonの基礎文法をマスターする.
今日学んだことは、今日学んだ知識に基づいています.
私は一日でこれをしましたか?
可愛くて嬉しいです.