본문 바로가기

2018/07(27)

HTML5 소개(HTML5 Introduction) What is New in HTML5? HTML5의 새로운 기능 The DOCTYPE declaration for HTML5 is very simple: HTML5에 대한 DOCTYPE 선언은 매우 간단합니다. 1 cs The character encoding (charset) declaration is also very simple: 문자 인코딩 (charset) 선언도 매우 간단합니다. 1 cs HTML5 Example: 1 2 3 4 5 6 7 8 9 10 11 12 Title of the document Content of the document...... cs Try it Yourself » The default character encoding in HTML5 is UTF-8. HTML5의 기..
[R]HTML 입력 속성(HTML Input Attributes) The value Attribute 속성 값 The value attribute specifies the initial value for an input field: value특성은 입력 필드에 대한 초기 값을 지정 Example 1 2 3 4 First name: Colored by Color Scripter cs The readonly Attribute readonly 특성 The readonly attribute specifies that the input field is read only (cannot be changed): 이 readonly속성은 입력 필드가 읽기 전용임을 나타냅니다 (변경할 수 없음). Example 1 2 3 4 First name: Colored by Color Scrip..
[R]HTML 입력 유형(HTML Input Types) This chapter describes the different input types for the element.이 장에서는 요소에 대한 다양한 입력 유형에 대해 설명합니다. Input Type Text입력 유형 텍스트 defines a one-line text input field:한 줄짜리 텍스트 입력 필드를 정의 합니다 . Example123456 First name: Last name: Colored by Color Scriptercs This is how the HTML code above will be displayed in a browser:위의 HTML 코드가 브라우저에 표시되는 방법입니다. First name:Last name: Input Type Password입력 유형 암호 def..
[AdSense & Blog]15 years of AdSense 게시일: 2018. 7. 1. 15 words to sum up 15 years?That's easy! Okay, let's go.15 년을 요약하는 15 단어?간단합니다! 좋아, 가자. ContentContent is at the heart of the web.함유량콘텐츠는 웹의 핵심입니다. And publishers?You power that web. Without you that place would be quite empty.그리고 출판사?당신은 그 웹을 강화합니다. 너 없이는 그 장소는 꽤 비어있을거야. Ads? Ads bring the revenue that helps to fund it all while helping you reach your...광고? 광고를 통해 수익을 올리는 동시에 수..
[R]HTML 양식 요소(HTML Form Elements) This chapter describes all HTML form elements.이 장에서는 모든 HTML 양식 요소를 설명합니다. The Element 요소 The most important form element is the element.가장 중요한 양식 요소는 요소입니다.The element can be displayed in several ways, depending on the type attribute.요소는에 따라 여러 가지 방법으로 표시 할 수 있습니다 type 속성. Example1cs If the type attribute is omitted, the input field gets the default type: "text".는 IF type"텍스트"속성이 생략 입력 필드는 기본 유..
[R]HTML 양식HTML Forms HTML Form ExampleHTML 양식 예제 First name: Last name: Try it Yourself » The Element 요소 The HTML element defines a form that is used to collect user input:HTML 요소는 사용자 입력을 수집하는 데 사용되는 양식을 정의합니다.12345.form elements.csAn HTML form contains form elements.HTML 양식은 양식 요소를 포함 합니다 .Form elements are different types of input elements, like text fields, checkboxes, radio buttons, submit buttons, and more.양식 ..
[R]HTML 과 XHTML(HTML and XHTML) XHTML is HTML written as XML. XHTML은 XML로 작성된 HTML입니다. What Is XHTML?XHTML은 무엇입니까? XHTML stands for EXtensible HyperText Markup Language XHTML은 EXtensible Hyper TEXT Markup의 Language XHTML is almost identical to HTML XHTML은 HTML과 거의 동일합니다. XHTML is stricter than HTML XHTML은 HTML보다 엄격합니다. XHTML is HTML defined as an XML application XHTML은 XML 애플리케이션으로 정의 된 HTML입니다. XHTML is supported by all major..