_
로그인페이지ID:
PW:
로그인하기background-color
background-image
background-size
width
height
font-size
font-weight
font-family
color
margin 안쪽간격
padding 바깥쪽간격
h1, h5, background-image, background-size, background-position
color, width, height, border-radius, margin, padding
https://kr.piliapp.com/facebook-symbols/
https://getbootstrap.com/docs/5.0/components/buttons/
.mytitle{
height: 350px;
width: 100%;
background-image:url("https://pds.joongang.co.kr/news/component/htmlphoto_mmdata/202205/05/e57a4657-bd89-4332-8b1a-0507f293b4d7.jpg");
background-position:center 35%;
background-size: cover; >>이미지를 설정해둔 크기에 맞게 해줌
color: white;
display: flex;
flex-direction: column; >>> 내용물을 중앙 정렬하기위해 사용
justify-content: center;
align-items: center;
Forms 의 Floating Labels 참조
Forms 의 Floating Labels의 Textareas 참조
Card → Quot를 참조
div class="mbutton"
button type="button" class="btn btn-dark">응원 남기기</button
응원 남기기
let txt=$('#input-q2').val() // let 은 선언 txt는 변수 이름 input-q2는 id 이름을 뜻한다.
let temp_html = <li>${txt}</li>
<<< txt를 입력받아서
$('#names-q3').append(temp_html)
<<<append(temp_html)을 이용해서 붙인다.