Posted on

gyfxdxdx,n



    
    
    <title>Example with Div</title>
    
        /* CSS styles for the div */
        .container {
            width: 80%;
            margin: 0 auto;
            padding: 20px;
            background-color: #f0f0f0;
            border: 1px solid #ccc;
            border-radius: 8px;
        }
        .content {
            font-family: Arial, sans-serif;
            font-size: 16px;
            color: #333;
        }
    


    <div class="container">
        <h1>Welcome to My Web Page</h1>
        <div class="content">
            <p>This is a paragraph inside a div element.</p>
            <p>Div elements are used to group and style content.</p>
        </div>
    </div>