본문 바로가기

HTML(56)

HTML 이미지(HTML Images) Images can improve the design and the appearance of a web page. 이미지는 웹 페이지의 디자인과 모양을 향상시킬 수 있습니다. Example1cs Try it Yourself » Example1cs Try it Yourself » Example1cs Try it Yourself » HTML Images Syntax HTML 이미지 구문 In HTML, images are defined with the tag. HTML에서는 이미지가 태그 로 정의됩니다 . The tag is empty, it contains attributes only, and does not have a closing tag. 태그는 단지 속성을 포함, 비어있는, 그리고 닫는 태그가 없습..
HTML 링크(HTML Links) Links are found in nearly all web pages. Links allow users to click their way from page to page. 링크는 거의 모든 웹 페이지에서 찾을 수 있습니다. 링크를 통해 사용자는 페이지에서 페이지로 이동할 수 있습니다. HTML Links - HyperlinksHTML 링크 - 하이퍼 링크 HTML links are hyperlinks. HTML 링크는 하이퍼 링크입니다. You can click on a link and jump to another document. 링크를 클릭하여 다른 문서로 이동할 수 있습니다. When you move the mouse over a link, the mouse arrow will turn into ..
HTML 스타일 - CSS(HTML Styles - CSS) CSS = Styles and Colors Manipulate Text Colors, BoxesStyling HTML with CSSCSS로 HTML 스타일 지정하기 CSS stands for Cascading Style Sheets. CSS는 의미 C의 ascading의 S의 tyle S의 heets. CSS describes how HTML elements are to be displayed on screen, paper, or in other media. CSS는 HTML 요소가 화면, 종이 또는 다른 미디어에 표시되는 방법을 설명 합니다 . CSS saves a lot of work. It can control the layout of multiple web pages all at once. CS..
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..