웹 개발자들이 기억해야할 주요 사항
웹 개발자들이 기억해야할 주요 사항
Key points to remember
1
Tags are made up of an opening and closing angle bracket with a tag name in the middle. Elements are pairs of tags that encapsulate or wrap-around other elements or web content.
태그는 여는 꺽쇠 괄호와 닫는 꺽쇠 괄호 사이에 태그 이름이 포함되어 있습니다. 요소는 다른 요소나 웹 콘텐츠를 감싸는 태그 쌍으로 이루어집니다.
2
HTML is a declarative language, meaning it describes the rules for what a page should display and act, but not how a browser should implement those rules.
HTML은 선언적 언어입니다. 페이지가 표시되고 작동해야하는 규칙을 설명하지만, 브라우저가 이런 규칙을 어떻게 구현하는지 설명하지 않습니다.
3
Nesting occurs when developers include some HTML elements in between other HTML elements.
중첩은 개발자가 다른 HTML요소 사이에 일부 HTML요소를 포함시킬때 발생합니다.
4
An HTML element that contains another is the elements parent. The HTML elements inside the parent are the child elements.
다른 요소를 포함하는 HTML 요소는 부모 요소입니다. 부모 요소 내부의 HTML 요소는 자식요소 입니다.
5
HTML documents should include the <html> </html>, <head></head>, and <body></body> elements.
HTML 문서에는 <html> </html>, <head></head>, 그리고 <body></body> 요소가 포함되어야 합니다.
6
Attributes can change the style of the element, set a property, and include metadata for use by a scripting program.
속성은 요소의 스타일을 변경하거나, 속성을 설정하고, 스크립팅 프로그램에서 사용할 메타데이터를 포함할 수 있습니다.
7
Organizing code and content on the page helps make code scannable and easier to navigate making collaboration smoother.
코드와 콘텐츠를 페이지에서 조직화하면 코드를 쉽게 스캔하고 탐색할수 있어 협업이 원활해집니다.
8
The best practices to help web developers stay organized are commenting, style conventions, semantic elements, and organizing the head section in a HTML document.
웹 개발자가 조직을 유지하는데 도움이 되는 것은 주석, 스타일규칙, 시맨틱요소, 헤드 섹션 구성입니다.
9
CSS is a collection of styles than a web developer uses to add design to web pages.
CSS는 웹 개발자가 웹페이지에 디자인을 추가하기 위해 사용하는 스타일 모음입니다.
10
Styles can be inherited by child elements in HTML from parent elements.
스타일은 HTML에서 부모 요소로부터 자식 요소로 상속될 수 있습니다.
11
External stylesheets are styles that are put in a separate file with a .css extension.
외부 스타일 시트는 css확장자를 가진 별도의 파일에 있는 스타일입니다.
12
A style in a stylesheet has three basic elements: A selector, a node name, and a declaration block.
스타일 시트의 스타일은 셀렉터, 노드 이름, 선언 블록의 세가지 기본 요소로 구성됩니다.
13
A declaration block has one or more style declarations that consist of properties and values.
선언 블록은 속성과 값으로 구성된 하나 이상의 스타일 선언을 포함합니다.
14
To add a style to an HTML element, web developers use the class selector, id selector, element selector, or in-line styling on the element that is to be styled.
HTML 요소에 스타일을 추가하려면 웹 개발자는 클래스 셀렉터, ID 셀렉터, 요소 셀렉터 또는 인라인 스타일링을 사용합니다.
15
The CSS box model is a method of laying out a website using CSS.
CSS박스 모델은 CSS를 사용하여 웹사이트를 배치하는 방법입니다.
16
CSS boxes have five main components: height, width, margins, padding, and border. Each of these have attributes that provide the web developer with fine-grained control over how the box behaves in a variety of scenarios.
CSS 박스는 높이, 너비, 여백, 패딩, 테두리의 다섯 가지 주요 구성 요소로 이루어져 있습니다. 각 구성 요소는 다양한 시나리오에서 상자가 어떻게 동작하는지에 대해 웹 개발자가 세부적인 제어를 할 수 있는 속성을 가집니다.
17
Web developers follow best practices of setting doctype declarations for every HTML document, using stylesheets, using closing tags help the browser define the scope of the content, and saving and checking their work often.
18
IDEs are software that has a central user interface that includes all the tools a web developer needs. IDEs simplify the workflow for a developer.
웹 개발자는 모든 HTML 문서에 DOCTYPE 선언을 설정하고, 스타일 시트를 사용하고, 닫는 태그를 사용하여 브라우저가 콘텐츠의 범위를 정의하도록 돕고, 자주 작업을 저장하고 확인하는 모범 사례를 따릅니다.
19
IDE features include a code editor, intelligent code compilation, autosave, and integrated debugger.
IDE 기능에는 코드 편집기, 지능형 코드 컴파일, 자동 저장 및 통합 디버거가 포함됩니다.
끝!