[코딩기록] 1-1. HTML, CSS 기초

샘샘이·2022년 9월 27일
0

스파르타코딩클럽

목록 보기
1/3

하는만큼 눈에 보이는 결과가 나오니 재밌다 ㅎㅎ
언제까지 얼마나 할 수 있을진 모르겠지만.. 지금 재밌으면 됐지!

튜터님이 모든 코드를 외울 필요는 없다고 하셨다
필요할때마다 검색해서 긁어쓰면 된다고.

외우지 말고 전체의 그림을 이해하자


<!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>
        * {
            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: 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>

  • div class="mytitle"
    head ▶ style ▶ .mytitle {이 안에서 디자인}
    .mytitle > button {mytitle 속 버튼 디자인. 굳이 button에 class 달지 않아도 가능}
    button:hover {마우스커서 대면 디자인 바뀜}

  • head ▶ style ▶ * {전체 스타일 적용}

  • background는 항상 3set
    background-image: url('이미지사이트');
    background-position: center;
    background-size: cover;

<!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>스파르타코딩클럽 | 부트스트랩 연습하기</title>
 <link href="https://fonts.googleapis.com/css2?family=Gowun+Dodum&display=swap" rel="stylesheet">
<style>
 * {
 font-family: 'Gowun Dodum', sans-serif;
}
 .mytitle {
   background-color: green;
  width: 100%;
  height: 250px;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://movie-phinf.pstatic.net/20210715_95/1626338192428gTnJl_JPEG/movie_image.jpg");
   background-position: center;
   background-size: cover;
   color: white;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
 }
 .mytitle > button {
   width: 200px;
   height: 50px;
   background-color: transparent;
   color: white;
   border-radius: 50px;
   border: 1px solid white;
   margin-top: 10px;
 }
 .mytitle > button:hover {
   border: 4px solid white;
 }
</style>
</head>
<body>
 <div class="mytitle">
   <h1>내 생애 최고의 영화들</h1>
   <button>영화 기록하기</button>
 </div>
</body>
</html>
profile
할 수 있으니까 하고 있지!

0개의 댓글