본문 바로가기

HTML(56)

HTML 레이아웃(HTML Layouts) HTML Layout Example HTML 레이아웃 예제 Try it Yourself » HTML Layout Elements HTML 레이아웃 요소 Websites often display content in multiple columns (like a magazine or newspaper). 웹 사이트는 종종 잡지 나 신문과 같이 여러 열에 내용을 표시합니다. HTML5 offers new semantic elements that define the different parts of a web page: HTML5는 웹 페이지의 다른 부분을 정의하는 새로운 의미 요소를 제공합니다. - 문서 또는 섹션의 머리글을 정의합니다.(Defines a header for a document or a sect..
HTML 헤드(HTML Head) The HTML Element HTML 요소 The element is a container for metadata (data about data) and is placed between the tag and the tag. 요소 (데이터에 대한 데이터)에 대한 메타 데이터 컨테이너하며 사이에 위치 태그와 태그. HTML metadata is data about the HTML document. Metadata is not displayed. HTML 메타 데이터는 HTML 문서에 대한 데이터입니다. 메타 데이터가 표시되지 않습니다. Metadata typically define the document title, character set, styles, links, scripts, and other m..
HTML 파일 경로(HTML File Paths) Path Description picture.jpg is located in the same folder as the current page picture.jpg는 현재 페이지와 같은 폴더에 있습니다. picture.jpg is located in the images folder in the current folder picture.jpg는 현재 폴더의 images 폴더에 있습니다. picture.jpg is located in the images folder at the root of the current web picture.jpg는 현재 웹의 루트에있는 images 폴더에 있습니다. picture.jpg is located in the folder one level up from the curren..
HTML 자바 스크립트(HTML JavaScript) JavaScript makes HTML pages more dynamic and interactive. JavaScript는 HTML 페이지를 더욱 역동적이고 대화식으로 만듭니다. Example My First JavaScript Click me to display Date and Time Try it Yourself » The HTML Tag HTML 태그 The tag is used to define a client-side script (JavaScript). 이 태그는 클라이언트 측 스크립트 (JavaScript)를 정의하는 데 사용됩니다. The element either contains scripting statements, or it points to an external script fil..
HTML Iframes(HTML Iframes) An iframe is used to display a web page within a web page. iframe은 웹 페이지 내에 웹 페이지를 표시하는 데 사용됩니다. chlehrb.tistory.com Iframe SyntaxIframe 구문 An HTML iframe is defined with the tag: HTML iframe은 다음 태그 로 정의됩니다 . 1cs The src attribute specifies the URL (web address) of the inline frame page. src속성은 인라인 프레임 페이지의 URL (웹 주소)을 지정합니다. Iframe - Set Height and WidthIframe - 높이 및 너비 설정 Use the height and wi..
HTML id 속성(HTML The id Attribute) Using The id Attributeid 속성 사용하기 The id attribute specifies a unique id for an HTML element (the value must be unique within the HTML document).이 id속성은 HTML 요소의 고유 ID를 지정합니다 (값은 HTML 문서 내에서 고유해야합니다).The id value can be used by CSS and JavaScript to perform certain tasks for a unique element with the specified id value.id 값은 CSS 및 JavaScript에서 지정된 id 값을 갖는 고유 요소에 대한 특정 작업을 수행하는 데 사용할 수 있습니다.In CS..
HTML 클래스의 Attribute(HTML The class Attribute) Using The class Attributeclass 속성 사용하기 The HTML class attribute is used to define equal styles for elements with the same class name.HTML 클래스 속성은 동일한 클래스 이름을 가진 요소에 대해 동일한 스타일을 정의하는 데 사용됩니다.So, all HTML elements with the same class attribute will have the same format and style.따라서 동일한 클래스 속성을 가진 모든 HTML 요소는 동일한 형식 및 스타일을 갖습니다.Here we have three elements that point to the same class name:여기에 동일한 ..
HTML 블록 및 인라인 요소(HTML Block and Inline Elements) Every HTML element has a default display value depending on what type of element it is. 모든 HTML 요소는 요소 유형에 따라 기본 표시 값을가집니다. The default display value for most elements is block or inline.대부분의 요소에 대한 기본 표시 값은 블록 또는 인라인입니다. Block-level Elements모든 HTML 요소는 요소 유형에 따라 기본 블록 수준 요소 A block-level element always starts on a new line and takes up the full width available 블록 수준 요소는 항상 새 줄에서 시작하여 사용할 수있는 전체..
HTML 목록(HTML Lists) HTML List ExampleHTML 목록 예제 An Unordered HTML ListCoffeeTeaMilkAn Ordered HTML ListCoffeeTeaMilk Try it Yourself » Unordered HTML List 정렬되지 않은 HTML 목록 An unordered list starts with the tag. Each list item starts with the tag. 정렬되지 않은 목록은 태그로 시작합니다 . 각 목록 항목은 태그로 시작합니다 . The list items will be marked with bullets (small black circles) by default: 목록 항목은 기본적으로 글 머리 기호 (작은 검은 색 원)로 표시됩니다. Example12..
HTML 표(HTML Tables) HTML Table Example Company Contact Country Alfreds Futterkiste Maria Anders Germany Centro comercial Moctezuma Francisco Chang Mexico Ernst Handel Roland Mendel Austria Island Trading Helen Bennett UK Laughing Bacchus Winecellars Yoshi Tannamuri Canada Magazzini Alimentari Riuniti Giovanni Rovelli Italy Try it Yourself » Defining an HTML Table HTML 테이블 정의하기 An HTML table is defined with the tag...