• Breaking News

    html classes

     <!DOCTYPE html>
    <html>
    <head>
    <style>
    .city {
      background-color: tomato;
      color: white;
      border: 2px solid black;
      margin: 20px;
      padding: 20px;
    }
    </style>
    </head>
    <body>

    <div class="city">
    <h2>London</h2>
    <p>London is the capital of England.</p>
    </div>

    <div class="city">
    <h2>Paris</h2>
    <p>Paris is the capital of France.</p>
    </div>

    <div class="city">
    <h2>Tokyo</h2>
    <p>Tokyo is the capital of Japan.</p>
    </div>

    </body>
    </html>


    <!DOCTYPE html>
    <html>
    <head>
    <style>
    .city {
      background-color: tomato;
      color: white;
      padding: 10px;
    }
    </style>
    </head>
    <body>

    <h2>The class Attribute</h2>

    <h2 class="city">india  </h2>
    <p>delhi is capital of india .</p>

    <h2 class="city">india </h2>
    <p>delhi is capital of india .</p>


    <h2 class="city">india </h2>
    <p>delhi is capital of india .</p>

    </body>
    </html>



    कोई टिप्पणी नहीं

    Post Top Ad

    Post Bottom Ad