HTML5 - New Structural Tags : <footer>
Web Design/HTML & HTML 52018. 4. 28. 14:07
HTML5 - New Structural Tags ( 구조 태그 ) : <footer></footer>
01. <section></section>
02. <article></article>
03. <aside></aside>
04. <header></header>
05. <hgroup></hgroup>
06. <footer></footer>
07. <nav></nav>
06. <footer></footer>
footer 요소는 보통 작성자, 연관된 문서에 대한 링크, 저작권 정보, 기타 흡사한 정보를 담습니다.
source )
<!DOCTYPE html>
<html>
<body>
<footer>
<p>Posted by: Hege Refsnes</p>
<p>Contact information: <a href="mailto:someone@example.com">someone@example.com</a>.</p>
</footer>
<p><strong>Note:</strong> The footer tag is not supported in Internet Explorer 8 and earlier versions.</p>
</body>
</html>
result )
'Web Design > HTML & HTML 5' 카테고리의 다른 글
[HTML] Tag ; a, abbr, acronym (0) | 2018.05.07 |
---|---|
HTML5 - New Structural Tags : <nav> (1) | 2018.04.28 |
HTML5 - New Structural Tags : <header> (0) | 2018.04.28 |
HTML5 - New Structural Tags : <hgroup> (0) | 2018.04.28 |
HTML5 - New Structural Tags : <aside> (0) | 2018.04.28 |