본문 바로가기

레퍼런스

HTML& CSS 기본태그 & 부트스트랩 시작코드 및 주소

HTML

<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>스파르타코딩클럽 | HTML 기초</title>
</head>

<body>
<!-- 구역을 나누는 태그들 -->
<div>나는 구역을 나누죠</div>
<p>나는 문단이에요</p>
<ul>
<li> bullet point!1 </li>
<li> bullet point!2 </li>
</ul>

<!-- 구역 내 콘텐츠 태그들 -->
<h1>h1은 제목을 나타내는 태그입니다. 페이지마다 하나씩 꼭 써주는 게 좋아요. 그래야 구글 검색이 잘 되거든요.</h1>
<h2>h2는 소제목입니다.</h2>
<h3>h3~h6도 각자의 역할이 있죠. 비중은 작지만..</h3>
<hr>
span 태그입니다: 특정 <span style="color:red">글자</span>를 꾸밀 때 써요
<hr>
a 태그입니다: <a href="http://naver.com/"> 하이퍼링크 </a>
<hr>
img 태그입니다: <img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" />
<hr>
input 태그입니다: <input type="text" />
<hr>
button 태그입니다: <button> 버튼입니다</button>
<hr>
textarea 태그입니다: <textarea>나는 무엇일까요?</textarea>
</body>

</html>

CSS

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>로그인 페이지</title>
<!--    폰트 삽입-->
    <link href="https://fonts.googleapis.com/css2?family=Dongle:wght@300&display=swap" rel="stylesheet">
<!--    css파일 불러오기-->
    <link rel="stylesheet" type="text/css" href="mystyle.css" >
<!--    <style>-->
<!--        /*모든태그에 폰트 적용*/-->
<!--        * {-->
<!--            font-family: 'Dongle', sans-serif;-->
<!--        }-->
<!--        .mytitle {-->
<!--            background-color: green;-->
<!--            width: 300px;-->
<!--            height: 200px;-->
<!--            color: white;-->
<!--            text-align: center;-->

<!--            /*배경넣는데 항상 같이 붙어다니는 코드 3줄*/-->

<!--            background-size: cover;-->
<!--            background-position: center;-->

<!--            border-radius: 10px;-->
<!--            /*바깥여백 margin*/-->
<!--            /*안쪽여백 padding*/-->

<!--            padding-top: 40px;-->
<!--        }-->
<!--        .wrap {-->
<!--            width: 300px;-->
<!--            margin: auto; /* 양쪽 여백 동일하게 만들어주기*/-->
<!--        }-->
<!--    </style>-->
</head>
<body>
    <div class="wrap">
    <!--    이름표를 붙힌다! 해당 이름을 지정하고 꾸민다!  class는 . id는 #-->
        <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-->
<link href="https://fonts.googleapis.com/css2?family=Gowun+Dodum&display=swap" rel="stylesheet">

<style>
    /*폰트 적용하기 2*/
    * {
        font-family: 'Gowun Dodum', sans-serif;
    }

    .mytitle {
        background-color: green;

        height: 250px;
        width: 100%;

        /* url앞의 코드는 이미지 어둡게하기 코드 */
        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;

        /*div 안 내용물 가운데 정렬하는 코드 4줄 항상 붙어다님 붙여넣어쓰기*/
        display: flex;
        flex-direction: column; /* row로 설정할경우 가로로 정렬됨*/
        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: 2px solid;
    }
    .mycomment {
        color: gray;
    }
    .wrap {
        /* max-width와 width값 %로 지정해서 모바일 환경 대응*/
        max-width: 1200px;
        width: 95%;
        margin: 20px auto 0 auto;
    }
    .mypost {
        /* max-width와 width값 %로 지정해서 모바일 환경 대응*/
        max-width: 500px;
        width: 95%;
        /*background-color: gray; 테스트용*/

        margin: 20px auto 0 auto;

        box-shadow: 0px 0px 3px 0px gray;
        padding: 20px;

    }
    .mybtn {
        display: flex;
        flex-direction: row; /* row로 설정할경우 가로로 정렬됨*/
        justify-content: center;
        align-items: center;

        margin-top: 20px;
    }
    .mybtn > button {
        margin-right: 10px;
    }
</style>

부트스트랩 사이트

https://getbootstrap.com/docs/5.0/components/buttons/

 

Buttons

Use Bootstrap’s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.

getbootstrap.com

<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>

이모티콘

https://kr.piliapp.com/facebook-symbols/

 

페이스 북 기호 : 웃는 기호, 이모티콘 기호, 이모티콘과 코드 목록

× 이모지 - 이모티콘 혹은 웃는 얼굴이라고도 불립니다. iOS와 Android는 기본적으로 845개의 이모티콘을 지원하고 있으며, 페이스북은 하트/사랑 기호, 별, 부호 및 동물 모양을 포함한 절반을 지원

kr.piliapp.com