본문 바로가기

HTML(56)

[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..
[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..
[R]HTML Uniform Resource Locators A URL is another word for a web address.URL은 웹 주소의 또 다른 단어입니다.A URL can be composed of words (w3schools.com), or an Internet Protocol (IP) address (192.68.20.50).URL은 단어 (w3schools.com) 또는 인터넷 프로토콜 (IP) 주소 (192.68.20.50)로 구성 될 수 있습니다.Most people enter the name when surfing, because names are easier to remember than numbers.서핑을 할 때 대부분의 사람들은 이름을 입력합니다. 이름이 숫자보다 더 기억하기 쉽기 때문입니다. URL - Uniform Reso..
HTML 인코딩 (문자 집합)|(HTML Encoding (Character Sets)) To display an HTML page correctly, a web browser must know which character set (character encoding) to use.HTML 페이지를 올바르게 표시하려면 웹 브라우저가 사용할 문자 집합 (문자 인코딩)을 알아야합니다. What is Character Encoding?문자 인코딩이란 무엇입니까? ASCII was the first character encoding standard (also called character set). ASCII는 첫 번째 문자 인코딩 표준 (문자 집합이라고도 함)입니다.ASCII defined 128 different alphanumeric characters that could be used on t..
HTML 기호(HTML Symbols) HTML entities were described in the previous chapter.HTML 엔티티는 이전 장에서 설명했습니다.Many mathematical, technical, and currency symbols, are not present on a normal keyboard.많은 수학, 기술 및 통화 기호가 일반 키보드에는 없습니다.To add such symbols to an HTML page, you can use an HTML entity name.HTML 페이지에 이러한 기호를 추가하려면 HTML 엔티티 이름을 사용할 수 있습니다.If no entity name exists, you can use an entity number, a decimal, or hexadecimal ..
HTML 개체(HTML Entities) Reserved characters in HTML must be replaced with character entities. HTML의 예약 문자는 문자 엔티티로 대체되어야합니다. Characters that are not present on your keyboard can also be replaced by entities. 키보드에없는 문자는 엔티티로 바꿀 수 있습니다. HTML Entities HTML 개체 Some characters are reserved in HTML. 일부 문자는 HTML로 예약되어 있습니다. If you use the less than () signs in your text, the browser might mix them with tags. 텍스트에서보다 작음 () 기호를..
HTML 컴퓨터 코드 요소(HTML Computer Code Elements) Computer Code12345x = 5;y = 6;z = x + y;cs Try it Yourself » HTML For Keyboard Input 키보드 입력을위한 HTML The HTML element represents user input, like keyboard input or voice commands. HTML 요소는 키보드 입력 또는 음성 명령과 같은 사용자 입력을 나타냅니다. Text surrounded by tags is typically displayed in the browser's default monospace font: 태그로 둘러싸인 텍스트 는 일반적으로 브라우저의 기본 고정 폭 글꼴로 표시됩니다. Example1Save the document by pressing Ctr..
HTML 반응 형 웹 디자인(HTML Responsive Web Design) What is Responsive Web Design?반응 형 웹 디자인이란 무엇입니까? Responsive Web Design is about using HTML and CSS to automatically resize, hide, shrink, or enlarge, a website, to make it look good on all devices (desktops, tablets, and phones):반응 형 웹 디자인은 HTML과 CSS를 사용하여 웹 사이트의 크기를 자동으로 조정, 숨기기, 축소 또는 확대하여 모든 장치 (데스크톱, 태블릿, 휴대 전화)에서 잘 보이도록합니다. Try it Yourself » Note : A web page should look good on any device..