본문 바로가기

분류 전체보기(212)

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 ..
HTML 편집기(HTML Editors) Write HTML Using Notepad or TextEdit메모장 또는 텍스트 편집기를 사용하여 HTML 작성 Web pages can be created and modified by using professional HTML editors.전문적인 HTML 편집기를 사용하여 웹 페이지를 작성하고 수정할 수 있습니다.However, for learning HTML we recommend a simple text editor like Notepad (PC) or TextEdit (Mac).그러나 HTML을 배우려면 메모장 (PC)이나 텍스트 편집기 (Mac)와 같은 간단한 텍스트 편집기를 사용하는 것이 좋습니다.We believe using a simple text editor is a good wa..
HTML 소개(HTML Introduction) What is HTML?HTML is the standard markup language for creating Web pages.HTML은 웹 페이지를 만들기위한 표준 마크 업 언어입니다.HTML stands for Hyper Text Markup LanguageHTML은 하이퍼 텍스트 마크 업 언어HTML describes the structure of Web pages using markupHTML은 마크 업을 사용하여 웹 페이지의 구조를 설명합니다.HTML elements are the building blocks of HTML pagesHTML 요소는 HTML 페이지의 구성 요소입니다.HTML elements are represented by tagsHTML 요소는 태그로 표현됩니다.HTML t..