본문 바로가기

반응형

전체 글

(127)
[ajax, API] 카카오 개발자 API로 책 검색하기 2 1. title과 thumbnail 값 가져온다. $.ajax({ method: "GET", url: "https://dapi.kakao.com/v3/search/book?target=title", data: { query: "미움받을 용기" }, headers: { Authorization: "KakaoAK {REST API}" } }) .done(function (msg) { console.log(msg.documents[0].title); console.log(msg.documents[0].thumbnail); }); 2. 구글에 "jquery add html" 검색. 공식 사이트 api.jquery.com/append/ .append() | jQuery API Documentation Descri..
[ajax, API] 카카오 개발자 API로 책 검색하기 1 1. vscode 에 index.html 만들어 준다. 2. ! 입력한다 3. lang="ko" 로 변경하고, title 태그 사이도 이름 바꾼다. 3. body 태그 안에 h1 태그 넣고 사이트라고 작성한다 4. index.html 에 오른쪽마우스 클릭 - Reveal in File Explorer 선택 5. index 실행 6. 표시된다. 7. 구글에 "jQuery CDN" 검색 code.jquery.com/ jQuery CDN The integrity and crossorigin attributes are used for Subresource Integrity (SRI) checking. This allows browsers to ensure that resources hosted on third-..
[CSS] 부트스트랩, materialize, semantic-ui 사이트 1. 부트스트랩 bootstrapk.com/ 부트스트랩 · 세상에서 가장 인기있는 모바일 우선이며, 반응형인 프론트엔드 프레임워크. 프리프로세서 부트스트랩은 평범한 CSS 로 제공합니다만, 그것의 소스코드는 2개의 인기있는 CSS 프리프로세서인 Less 와 Sass 를 사용합니다. 신속하게 프리컴파일된 CSS 로 시작하거나 소스를 빌드 bootstrapk.com getbootstrap.com/docs/5.0/getting-started/introduction/ Introduction Get started with Bootstrap, the world’s most popular framework for building responsive, mobile-first sites, with jsDelivr and..

반응형