본문 바로가기
일상정보

웹개발 1주차 [구글무료폰트,로그인페이지 만들기]

by 꿀떡, 2022. 8. 24.
728x90
300x250

HTML, CSS

Quiz_간단한 로그인 페이지 만들어보기

구글 웹폰트, 주석, 파일분리

 

 

 

css 로그인 화면 만들기

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>로그인페이지</title>
   <link href="https://fonts.googleapis.com/css2?family=Jua&display=swap" rel="stylesheet">
    <style>
        * {
          /
        }
        .mytitle{
            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: 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>

오류

1.구글폰트 복사 후 폰트 적용 불가

 -강사 코드복붙

2.ctrl / 

바꾸기전 폰트로 돌아가나 입력한 코딩이 살아지고 다시 돌아오지 않음

 

 

300x250

댓글