[web] 기초

김키키·2022년 9월 6일
0
  • ctrl+alt+l : 자동 줄 맞춤
  • ctrl + / : 주석처리

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

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>로그인페이지</title>
</head>
<body>
    <h1>로그인 페이지</h1>
    <p>ID: <input type="text"/></p>
    <p>PW: <input type="text"/></p>
    <button>로그인하기</button>
</body>
</html>

자주 사용되는 CSS

h태그, background-image, background-size, background-position
color, width, height, border-radius, margin, padding

코드를 입력하세요

화면 중앙 배치하기

  • width 값 + margin:auto
    중앙 배치가 적용되지 않을 경우 display:block 속성 추가
코드를 입력하세요

웹폰트

https://fonts.google.com/?subset=korean

profile
로그를 남겨보자

0개의 댓글