웹표준,웹접근성(html, html5, css, css3, javascript, jQuery, jQueryMobile, snecha, senchaTouch, php, mobileWebApp)

address 본문

html

address

jokack01 2011. 11. 10. 09:17
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="ko">
 <head>
  <title>웹 정보를 구조화하는 요소</title>
 </head>
 <body>
 
  <h1>웹 정보 구조화 요소</h1>

  <div id="footer">
  
   <h5>저자(author)의 연락처</h5>
   <!--
    주의점!! <address> 내에는 절대로 블록 요소가 올 수 없습니다. 인라인만 가능.
   -->
   <address>
    <a href="http://facebook.com.yamoo9">author's <span>facebook</span></a>
    <a href="http://twitter.com/yamoo9">author's <em>twitter</em></a>
    <a href="mailto:yamoo9@naver.com">author's <strong>e-mail</strong></a>
   </address>
  </div>
 
 </body>
</html>

'html' 카테고리의 다른 글

정의 목록 dl dt dd  (0) 2011.11.10
del, ins  (0) 2011.11.10
abbr(축약어) acronym(두문자어)  (0) 2011.11.10
다른 페이지로의 <a> 요소 이동  (0) 2011.11.10
같은 페이지 내에서의 <a> 앵커 요소이동  (0) 2011.11.10