HTML Introduction
HTML Versions
The <!DOCTYPE> Declaration
- <!DOCTYPE>은 브라우저가 해당 document 를 정확히 표시하도록 도와준다.
Common Declarations
HTML Elements
Empty HTML ELements
HTML Tip: Use Lowercase Tags
HTML Attributes
Always Quote Attribute Values
HTML Tip: Use Lowercase Attributes
HTML Attributes Reference
HTML Text Formatting
HTML Formatting Tags
HTML "Computer Output" Tags
HTML Citations, Quotations, and Definition Tags
HTML Links
HTML Hyperlinks(Links)
HTML Links - The target Attribute
- a 태그의 attribute 로 target 을 지정할 수 있는데 target value 가 "_blank"일 경우에는 새 창에 뛰우며 링크를 연결한다.
HTML Links - The name Attribute
Basic Notes - Useful Tips
- folder 를 reference로 요청을 보낼 때는 항상 마지막에 '/' 를 붙여주는 것이 좋다. 붙이지 않으면, 최초 요청시 '/' 를 붙여주는 작업을 하고, 재요청을 한다. 처음부터 붙여주는 것이 좋다.
HTML <head>
The HTML <head> Element
The HTML <title> Element
The HTML <base> Element
The HTML <link> Element
The HTML <style> Element
The HTML <meta> Element
Keywords for Search Engines
HTML Styles - CSS
Styling HTML with CSS
Inline Style
- <p style="colod:blue;"> 스타일로 기술한다.
HTML Style Example - Text Alignment
- text-align:center;
Deprecated Tags and Attributes
HTML Images
HTML Images - The Alt Attribute
- "alt" attribute 는 image 가 표시되지 못하는 상황에서 대신 보여지는 text 이다.
HTML Images - Set Height and Width of an Image
- width 와 height를 항상 명시해주는 것이 좋다. 만약 명시되지 않으면 실제 사이즈로 표시되는데, 이미지를 다 받아올 때까지 사이즈를 결정할 수 없기 떄문에 html 페이지가 loading 되며 계속 refresh 된다.
Basic Notes - Useful Tips
- 10개의 이미지를 가지고 있다면, 11개의 이미지를 사용하는 게 좋다. ( 1개는 로딩 전 보여주기 )
HTML Image Tags
HTML Tables
HTML Table Tags
HTML Lists
HTML Definition Lists
Basic Notes - Useful Tips
- list item 안에서는 text, line breaks, images, link, list 등을 다 넣을 수 있다.
HTML <div> and <span>
HTML Block Elements
HTML Inline Elements
- <b>, <td>, <a>, <img> 등이 있다.
The HTML <div> ELement
The HTML <span> Element
HTML Layout
Website Layouts
HTML Layouts - Using <div> Elements
- block element 이기 때문에 style의 float:left를 사용하여 마무리 new line을 막는다.
HTML Layout - Useful Tips
- external source 에 style 을 넣어주면 유지보수가 쉽다.
HTML Forms and Input
Text Fields
- <input type="text" name="firstName">
Password Field
- <input type="password" name="pwd">
Radio Buttons
Checkboxes
Submit
HTML Form Tags
HTML Iframes
Iframe - Remove the Border
- "frameborder" attribute 를 이용해 border 를 없앨 수 있다.
Use iFrame as a Target for a Link
- "name" attribute 를 명시하고, target 에 해당 이름을 mapping 해주면 된다.
HTML Scripts
The HTML noscript Element
- <noscript>컨텐츠</noscript> 를 명시해주면, script 가 지원되지 않는 브라우저에서 해당 내용을 표시한다.
HTML Uniform Resource Locators
URL Encoding
'프로그래밍 놀이터 > Web' 카테고리의 다른 글
[jQuery/Tutorial] window.onload vs. ($document).ready (0) | 2013.05.08 |
---|---|
jQuery 를 공부해야 하는 이유 ( 결심동기 ) (2) | 2013.05.07 |
RESTful Web service: The basics (0) | 2012.12.08 |
ECMAScript(에크마스크립트, ES) 가 뭔가요? (0) | 2012.11.27 |
[Script] Dox 에 대해 알아본다. ( Dox Output에 대한 설명 ) (0) | 2012.11.11 |
댓글