본문 바로가기
Programming/HTML & CSS

[HTML] 간단한 로그인 페이지 만들기-2

by hongchii 2020. 12. 19.
728x90
반응형
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>로그인페이지</title>

    <link rel="preconnect" href="https://fonts.gstatic.com">
    <link href="https://fonts.googleapis.com/css2?family=Jua&display=swap" rel="stylesheet">

    <style>
        *{
            font-family: 'Jua', sans-serif;
        }
        .mytitle {
            background-color: green; 

            width: 300px;
            height: 200px;

            color: white;
            text-align: center;

            background-image: url(https://www.ancient-origins.net/sites/default/files/field/image/Agesilaus-II-cover.jpg);
            background-size: cover;
            background-position: center;
            border-radius: 10px;

            padding-top: 20px;
        }

        .wrap{
            width: 300px;
            margin: auto;
        }

        .mybtn {
            width: 300px;
            height: 50px;
            margin: auto;
            background-color: brown;
            color: white;
            text-align: center;
            padding-top: 5px;
            border-radius: 5px;
        }
    </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 class="mybtn">로그인하기</button>
    </div>
</body>

</html>

 

 

실행결과

728x90
반응형

'Programming > HTML & CSS' 카테고리의 다른 글

[HTML] form 이해하기  (0) 2020.12.24
[CSS] inline, block, inline-block  (0) 2020.12.24
[CSS] flex사용 배치 연습  (1) 2020.12.24
크리스마스 카드 만들기  (0) 2020.12.19
[HTML] 간단한 로그인 페이지 만들기  (0) 2020.12.19

댓글