'Front-End/HTML5 + CSS'에 해당되는 글 36건

donaricano-btn

 6. ImageMap

6_1. <map>

Use the <map> to define an image-map

- The name attribute of the <map> tag is associated with the <img>'s usemap attribute and creates a relationship between the image and the map


'Front-End > HTML5 + CSS' 카테고리의 다른 글

[HTML5] 8. Form and input  (0) 2016.08.04
[HTML5] 7. Multimedia_video  (0) 2016.08.04
[HTML5] 5. Image  (0) 2016.08.04
[HTML5] 4. HyperLink  (0) 2016.08.04
[HTML5] 3.Text Tag  (0) 2016.08.04
블로그 이미지

리딩리드

,
donaricano-btn

5. Image


5_1. <img>

- The tag is empty, it contains attributes only, and does not have a closing tag

Attribute

1) src : This attribute specifies the URL of the image


2) alt : The alt attribute provides an alternate text for image, if browser cannot find an image, it will display the value of the alt attribute

3) width and Height

- You can use the style attribute to specify the width and height of an image

Always specify the width and height of an image, If width and height are not specified, the page will flicker while the image loads

- It is suggested using the style attribute, it prevents internal or external styles sheets from changing the original size of images

 



'Front-End > HTML5 + CSS' 카테고리의 다른 글

[HTML5] 7. Multimedia_video  (0) 2016.08.04
[HTML5] 6. ImageMap  (0) 2016.08.04
[HTML5] 4. HyperLink  (0) 2016.08.04
[HTML5] 3.Text Tag  (0) 2016.08.04
[HTML5] 2. Semantic for IE  (0) 2016.08.04
블로그 이미지

리딩리드

,
donaricano-btn

4. HyperLink


4_1. <a>

- <a> tag defines a hyperlink, which is used to link from one page to another

- The most important attribute of the<a> element is the href attribute, which indicates the link's destination

Attribute

1) target

- _blank : Specifies where to open the linked document

2) title

- title: This attribute give link info to us, It's like a tooltip

3) href

- href : Specifies the URL of the page the link goes to

 

- To move where you want 

 


'Front-End > HTML5 + CSS' 카테고리의 다른 글

[HTML5] 6. ImageMap  (0) 2016.08.04
[HTML5] 5. Image  (0) 2016.08.04
[HTML5] 3.Text Tag  (0) 2016.08.04
[HTML5] 2. Semantic for IE  (0) 2016.08.04
[HTML5] 1. Semantics Tags  (0) 2016.08.04
블로그 이미지

리딩리드

,
donaricano-btn

 3. Text Tag


3_1. <p>

- A paragraph is marked up

- Browsers automatically add some space 


3_2. <blockquote>

- The tag specifies a section that is quoted from another source

- Browser usually indent <blockqoute> elements

 

3_3. <pre>

- Text in a <pre> element is displayed in a fixed-width font, and it preserves both spaces and line break

 

3_4. <mark>

- Use the tag if you want to highlight parts of your text

 

3_5. <ul, ol>

- ul tag defines a unordered list

- ol tag defines a ordered list

 

 How to remove a point in front of list

 

3_6. <dl>

- dl tag defines a description list

- dl tag is used in conjunction with <dt> and <dd>

 



'Front-End > HTML5 + CSS' 카테고리의 다른 글

[HTML5] 5. Image  (0) 2016.08.04
[HTML5] 4. HyperLink  (0) 2016.08.04
[HTML5] 2. Semantic for IE  (0) 2016.08.04
[HTML5] 1. Semantics Tags  (0) 2016.08.04
[CSS] To make a tab  (0) 2016.05.10
블로그 이미지

리딩리드

,