<abbr>

HTML
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Abbreviation Example</title>
</head>
<body>
    <p>The term <abbr title="HyperText Markup Language">HTML</abbr> 
    is essential for web development.</p>
</body>
</html>

<address>

HTML
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Address Example</title>
</head>
<body>
    <address>
        You can reach us at: <br>
        123 Example Lane, Web City, World.<br>
        Email: <a href="mailto:contact@example.com">contact@example.com</a>
    </address>
</body>
</html>

<area>

HTML
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Image Map Example</title>
</head>
<body>
    <img src="example.jpg" usemap="#example-map" alt="Example Map">
    <map name="example-map">
        <area shape="rect" coords="10,10,100,100" href="https://example.com/page1" alt="Rectangle Area">
        <area shape="circle" coords="150,150,50" href="https://example.com/page2" alt="Circle Area">
    </map>
</body>
</html>

<article>

HTML
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Article Example</title>
</head>
<body>
    <article>
        <h2>Benefits of Learning HTML</h2>
        <p>HTML is the foundation of web development, making it an essential skill for developers.</p>
    </article>
</body>
</html>

<aside>

HTML
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Aside Example</title>
</head>
<body>
    <aside>
        <h3>Tip of the Day</h3>
        <p>Remember to use semantic HTML for better accessibility and SEO.</p>
    </aside>
</body>
</html>

For You

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다