본문 바로가기

공부 기록

(319)
Form Form https://developer.mozilla.org/ko/docs/Web/HTML/Element/form - HTML: Hypertext Markup Language | MDN HTML 요소는 정보를 제출하기 위한 대화형 컨트롤을 포함하는 문서 구획을 나타냅니다. developer.mozilla.org 예제1 Forms Demo Labels Enter a Username: Enter a Password: Buttons Submit Just a button Search on everywhere Search on Naver Search on Google Search on Youtube Please select --Choose an option-- Just May Cute May Pretty May..
Table Table의 구성 요소 간단한 예제 List of U.S. cities by population City State 2021 estimate New York New York 8,467,513 Los Angeles California 3,849,297 Chicago Illinois 2,696,555 Table v2 City State population 2021 estimate 2020 census New York New York 8,467,513 8,804,190 Los Angeles California 3,849,297 3,898,747 Chicago Illinois 2,696,555 2,746,388 https://developer.mozilla.org/ko/docs/Web/HTML/Element/t..
HTML 기본 구조와 Semantic Elements Semantic Elements in HTML Chicken - Yuripedia I am a LINK The chicken (Gallus gallus domesticus) is a domesticated junglefowl species, with attributes of wild species such as the grey and the Ceylon junglefowl[1] that are originally from Southeastern Asia. Rooster or cock is a term for an adult male bird, and a younger male may be called a cockerel. A male that has been castrated is a capon. An ..
HTTP protocol HTTP (무상태 프로토콜) Hyper Text Transfer Protocol RFC 2616에서 규정된, 서버와 클라이언트가 Web에서 데이터를 주고 받기 위한 프로토콜 메시지를 주고(Request) 받는(Response) 형태의 통신 방법 이름에는 하이퍼텍스트 전송용 프로토콜로 정의되어 있지만 실제로는 HTML, XML, JSON, Image, Voice, Video, Javascript, PDF 등 다양한 컴퓨터에서 다룰 수 있는 것은 모두 전송할 수 있다. TCP를 기반으로 한 REST의 특징을 모두 구현하고 있는 Web 기반의 프로토콜 장점 : 불특정 다수를 대상으로 하는 서비스에 적합하다. 클라이언트와 서버가 계속 연결된 형태가 아니기 때문에 클라이언트와 서버 간의 최대 연결 수보다 훨씬 많..
URI 설계 원칙 URI (Uniform Resource Identifier) 인터넷에서 특정 자원을 나타내는 주소 값. 해당 값은 유일하다. (응답은 달라질 수 있다.) URL (Uniform Resource Locator) 인터넷 상에서의 자원, 특정 파일이 어디에 위치하는지 식별하는 주소 특정 웹 서버의 특정 파일에 접근하기 위한 경로 혹은 주소 URI의 하위 개념이다. 접근 프로토콜 / IP주소 또는 도메인 이름 / 문서의 경로 / 문서의 이름 REST API URI 설계 규칙 A trailing forward slash (/) should not be included in URIs. URI의 마지막에는 슬래시를 포함하지 않는다. Forward slash separator (/) must be used to ind..
REST API REST Representational State Transfer 자원의 상태 전달 - 네트워크 아키텍처 HTTP URI(Uniform Resource Identifier)를 통해 자원(Resource)을 명시하고, HTTP Method(POST, GET, PUT, DELETE 등)를 통해 해당 자원에 대한 CRUD Operation을 적용하는 것을 의미한다. REST의 구성 요소 자원(Resource) : HTTP URI 행위(Verb) : HTTP Method 표현(Representations) : HTTP Message Pay Load REST의 특징 Client, Server : 클라이언트와 서버가 서로 독립적으로 분리되어 있어야 한다. 무상태(Stateless) : 요청에 대해서 클라이언트의 상..
WEB WEB이란? World Wide Web, WWW, W3 인터넷에 연결된 컴퓨터를 통해 사람들이 정보를 공유할 수 있는 전 세계적인 정보 공간 인터넷 상의 정보를 하이퍼텍스트 방식과 멀티미디어 환경에서 검색할 수 있게 해주는 정보 검색 시스템 Internet이란? TCP/IP 기반의 네트워크가 전세계적으로 확대되어 하나로 연결된 네트워크들의 네트워크(네트워크의 결합체) https://en.wikipedia.org/wiki/Internet Internet - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search Global system of connected computer networks The Internet (..