📖 최성일, ⌈Do it! 인터랙티브 웹 페이지 만들기⌋, 이지스퍼블리싱, 2021
💡 인터랙티브 UI/UX
사용자와 상호 작용하는 여러 모션과 동적인 콘텐츠를 사용하는 환경
{
"editor.wordWrap": "on",
"editor.fontFamily": "d2coding, verdana",
"editor.mouseWheelZoom":true,
"editor.lineNumbers":"on",
"editor.minimap.enabled":false,
"editor.colorDecorators": true,
"editor.codeLens": false,
"liveServer.settings.donotShowInfoMsg": true,
"workbench.iconTheme": "vscode-icons",
"vsicons.dontShowNewVersionMessage": true,
"liveServer.settings.CustomBrowser": "chrome",
"liveServer.settings.donotVerifyTags": true,
"fontAwesomeAutocomplete.triggerWord": "fa-",
"editor.tabSize": 4,
"prettier.tabWidth": 4,
"prettier.useTabs": true,
"workbench.colorTheme": "Material Theme",
"window.zoomLevel": 1,
}
html:5 입력 후 Enter 🔽
html 태그의 lang 속성값으로 언어 변경
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>
본격적인 실습 전, 인터랙티브 UI/UX의 개념과 웹 페이지 제작에 필요한 전체적인 기본 개념들을 이론적으로 짚고 넘어가는 시간을 가졌다. 비전공자에게 특화된 책이라 전공자의 입장에서 따로 이해가 필요한 부분은 없어 이 부분은 속독하고 넘어갔다.