본문 바로가기

분류 전체보기(184)

HTML 색상(HTML Colors) HTML colors are specified using predefined color names, or RGB, HEX, HSL, RGBA, HSLA values.HTML 색상은 미리 정의 된 색상 이름 또는 RGB, HEX, HSL, RGBA, HSLA 값을 사용하여 지정됩니다. Color Names색상 이름 In HTML, a color can be specified by using a color name:HTML에서는 색상 이름을 사용하여 색상을 지정할 수 있습니다. Try it Yourself » HTML supports 140 standard color names.HTML은 140 개의 표준 색상 이름을 지원 합니다 . Background Color배경색 You can set the backg..
HTML 주석(HTML Comments) Comment tags are used to insert comments in the HTML source code.주석 태그는 HTML 소스 코드에 주석을 삽입하는 데 사용됩니다. HTML Comment TagsHTML 덧글 태그 You can add comments to your HTML source by using the following syntax:다음 구문을 사용하여 HTML 소스에 주석을 추가 할 수 있습니다. 1cs Notice that there is an exclamation point (!) in the opening tag, but not in the closing tag.열기 태그에는 느낌표 (!)가 있지만 닫기 태그에는 느낌표가 없습니다. Note: Comments are not..
HTML 인용문 및 인용문 요소(HTML Quotation) Quotation인용 Here is a quote from WWF's website:For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally. Try it Yourself » HTML for Short Quotations짧은 인용문을위한 HTML The HTML element defines a short quotation. HTML 요소는 짧은 인용을 정의합니다..
HTML 텍스트 서식 지정(HTML Text Formatting) Text Formatting텍스트 서식 지정 This text is boldThis text is italicThis is subscript and superscript Try it Yourself » HTML Formatting ElementsHTML 서식 요소 In the previous chapter, you learned about the HTML style attribute.이전 장에서는 HTML 스타일 속성 에 대해 학습했습니다 .HTML also defines special elements for defining text with a special meaning.HTML은 특별한 의미로 텍스트를 정의하기위한 특별한 요소 를 정의합니다 .HTML uses elements like and for..
HTML 스타일(HTML Styles) ExampleI am redI am blueI am big Try it Yourself » The HTML Style AttributeHTML 스타일 속성 Setting the style of an HTML element, can be done with the style attribute.HTML 요소의 스타일 설정은 style속성을 사용하여 수행 할 수 있습니다 .The HTML style attribute has the following syntax:HTML style속성의 구문 은 다음 과 같습니다. 1cs The property is a CSS property. The value is a CSS value.이 속성 은 CSS 속성입니다. 값은 CSS의 값입니다. You will learn more..
HTML 단락(HTML Paragraphs) HTML ParagraphsThe HTML element defines a paragraph:HTML 요소는 단락을 정의합니다 . Example 12This is a paragraph.This is another paragraph.cs Try it Yourself » Note: Browsers automatically add some white space (a margin) before and after a paragraph.참고 : 브라우저는 단락 앞뒤에 공백을 자동으로 추가합니다 (여백). HTML DisplayHTML 표시 You cannot be sure how HTML will be displayed.HTML이 어떻게 표시 될지 확신 할 수 없습니다.Large or small screens, a..
HTML 제목(HTML Headings) HTML HeadingsHTML 표제Heading 1Heading 2Heading 3Heading 4Heading 5 Heading 6 Try it Yourself » HTML HeadingsHTML 표제 Headings are defined with the to tags.표제는 to 태그 로 정의됩니다 .defines the most important heading. defines the least important heading.가장 중요한 제목을 정의합니다. 가장 중요하지 않은 머리글을 정의합니다. Example 123456Heading 1Heading 2Heading 3Heading 4Heading 5Heading 6cs Try it Yourself » Note: Browsers automatic..
HTML 속성(HTML Attributes) Attributes provide additional information about HTML elements.속성은 HTML 요소에 대한 추가 정보를 제공합니다. HTML AttributesAll HTML elements can have attributes모든 HTML 요소는 속성 을 가질 수 있습니다.Attributes provide additional information about an element속성 은 요소에 대한 추가 정보를 제공합니다.Attributes are always specified in the start tag속성은 항상 시작 태그에 지정됩니다 .Attributes usually come in name/value pairs like: name="value"속성은 일반적으로 다음과..
HTML 요소(HTML Elements) HTML Elements An HTML element usually consists of a start tag and end tag, with the content inserted in between:HTML 요소는 일반적으로 시작 태그와 종료 태그로 구성되며 그 사이에 내용이 삽입됩니다. Content goes here... The HTML element is everything from the start tag to the end tag:HTML 요소 는 시작 태그에서 종료 태그까지의 모든 것입니다: My first paragraph. Start tag Element content End tag My First Heading My first paragraph. HTML elements with no ..
HTML 기본(HTML Basic) HTML Basic ExamplesDon't worry if these examples use tags you have not learned.이 예제가 아직 배운 적이없는 태그를 사용하더라도 걱정하지 마십시오.You will learn about them in the next chapters.당신은 다음 장에서 그것들에 대해 배울 것입니다. HTML DocumentsAll HTML documents must start with a document type declaration: .모든 HTML 문서는 문서 유형 선언으로 시작해야합니다 .The HTML document itself begins with and ends with .HTML 문서 자체는로 시작 하고로 끝납니다 .The visible part ..