<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Web Design Trends</title>
    </head>
    <body>
        <h1>Web Design Trends</h1>
        <article>
            <h2>Web Design Trends 2023</h2>
            <p>Forecast and interpretation of web design trends for 2023...</p>

            <!-- Using a div tag to group content displayed in French and specify the language -->
            <div lang="fr">
                <h2>Tendances du design web 2023</h2>
                <p>Prévisions et interprétations des tendances du design web pour 2023.</p>
            </div>
        </article>
    </body>
</html>
<div class="shadow-box">
    <p>What a beautiful box style!</p>
</div>
.shadow-box {
    border-radius: 25px;
    padding: 2.5em;
    box-shadow: 0 20px 50px -25px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: gold;
}
Rendered Output
<div class="container" aria-hidden="true">
    <div class="circle circle-1"></div>
    <div class="circle circle-2"></div>
    <div class="circle circle-3"></div>
</div>
.container {
    position: relative;
    height: 200px;
}
.circle {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.circle-1 {
    top: 0;
    background-color: red;
}
.circle-2 {
    top: 80px;
    left: 100px;
    background-color: green;
}
.circle-3 {
    bottom: 0;
    left: 50px;
    background-color: blue;
}
Rendered Output
<header>
    <h1>Website Title<h1>
    .... logo, navigation, search ....
</header>

<!-- Can also be implemented using a <div> with role="banner" -->
<div role="banner">
    <h1>Website Title</h1>
    .... logo, navigation, search ....
</div>
<footer role="contentinfo">
    <address>
        © 2023 Example Webpage Creator
        <a href="mailto:contact@example.com">contact@example.com</a>
    </address>
</footer>

<!-- Can also be implemented using a <div> with role="contentinfo" -->
<div role="contentinfo">
    <address>
        © 2023 Example Webpage Creator
        <a href="mailto:contact@example.com">contact@example.com</a>
    </address>
</div>
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Webpage Title</title>
    </head>
    <body>
        <header></header>
        <nav></nav>
        <main>
            <!-- Main content area of the webpage -->
            <h1>Main Heading</h1>
            <p>Main content goes here...</p>
            <!-- Additional content -->
        </main>
        
        <!-- Can also be implemented using a <div> with role="main" -->
        <div role="main">
            <!-- Main content area of the webpage -->
            <h1>Main Heading</h1>
            <p>Main content goes here...</p>
            <!-- Additional content -->
        </div>
        <footer></footer>
    </body>
</html>
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Aside Tag Example</title>
    </head>
    <body>
        <header></header>
        <main></main>
        <aside>
            <h3>Additional Info</h3>
            <p>This area displays supplemental information that is separate from the main content.</p>
        </aside>
        
        <!-- Can also be implemented using a <div> with role="complementary" -->
        <div role="complementary">
            <h3>Additional Info</h3>
            <p>This area displays supplemental information that is separate from the main content.</p>
        </div>
        <footer></footer>
    </body>
</html>
<nav>
    <ul>
        <li><a href="/">Home</a></li>
        <li><a href="/about">About Us</a></li>
        <li><a href="/services">Services</a></li>
        <li><a href="/contact">Contact</a></li>
    </ul>
</nav>

<!-- Can also be implemented using a <div> with role="navigation" -->
<div role="navigation">
    <ul>
        <li><a href="/">Home</a></li>
        <li><a href="/about">About Us</a></li>
        <li><a href="/services">Services</a></li>
        <li><a href="/contact">Contact</a></li>
    </ul>
</div>
<button type="button" id="save">Save</button>

<!-- Can also be used like this -->
<div id="save" tabindex="0" role="button" aria-pressed="false">Save</div>