완성한 코드 6

영화 카드 리스트 js파일*2

처음 완성한 코드let cardList = document.querySelector(".cardList");// 페이지가 로드되면 커서를 검색창으로 자동 지정window.onload = function () {  document.getElementById("inputBox").focus();};const options = {  method: "GET",  headers: {    accept: "application/json",    Authorization:      "??키??같은??정보??",  },};// fetch로 불러온 promise를 json=>객체 배열로 변환하여 사용함fetch(  "https://api.themoviedb.org/3/movie/top_rated?language=en-U..

완성한 코드 2024.07.26

자기소개 페이지 메인 프레임(내 파트만)

DOCTYPE html>html lang="ko">head>  meta charset="UTF-8">  meta name="viewport" content="width=device-width, initial-scale=1.0">  title>여기서부터는 P4J1팀의 페이지입니다title>  link rel="stylesheet" href="./css/common.css">head>body>  div class="page">    div class="head">      span style="color: white; font-size: 30px; position: relative; right: 47%; top: 2%;">P4J1span>      div class="mBox">        div clas..

완성한 코드 2024.07.17