컴퓨터/클라이언트 썸네일형 리스트형 구글 아이콘, 폰트 사용법 [구글 머티리얼 아이콘] https://fonts.google.com/icons?selected=Material+Icons Google Fonts Making the web more beautiful, fast, and open through great typography fonts.google.com [구글 폰트] https://fonts.google.com/?subset=korean Google Fonts Making the web more beautiful, fast, and open through great typography fonts.google.com * CDN 추가 위의 싸이트에서 검색한 폰트의 CDN을 head 엘리먼트 내에 입력한다. 브라우저에서의 자바스크립트 Javascript in Browser [HTML에 연결] ~/app/public$ vi index.html HTML 문서의 body 제일 마지막에 넣어준다. ~/app/public$ mkdir script ~/app/public/script$ vi index.js alert("HTML과 JAVASCRIPT가 연결됐습니다!"); [페이지 이동] location.href="/주소"; [localStorage 사용법] // 키에 데이터 쓰기 localStorage.setItem("key", value); // 키로 부터 데이터 읽기 localStorage.getItem("key"); // 키의 데이터 삭제 localStorage.removeItem("key"); // 모든 키의 데이터 삭제 localStorage.clear(); // 저장된 키/.. 이전 1 2 다음