► Source Code & Notes: https://codewithharry.com/videos/web-development-in-hindi-20
►This video is a part of this Complete Web Development in Hindi Course Playlist: https://www.youtube.com/playlist?list=PLu0W_9lII9agiCUZYRsvtGTXdxkzPyItg
►Click here to subscribe – https://www.youtube.com/channel/UCeVMnSShP_Iviwkknt83cww
►Checkout my English channel here: https://www.youtube.com/ProgrammingWithHarry

Best Hindi Videos For Learning Programming:

►Learn Python In One Video – https://www.youtube.com/watch?v=ihk_Xglr164

►Python Complete Course In Hindi – https://www.youtube.com/playlist?list=PLu0W_9lII9agICnT8t4iYVSZ3eykIAOME

►C Language Complete Course In Hindi –
https://www.youtube.com/playlist?list=PLu0W_9lII9aiXlHcLx-mDH1Qul38wD3aR&disable_polymer=true

►JavaScript Complete Course In Hindi –
https://www.youtube.com/playlist?list=PLu0W_9lII9ajyk081To1Cbt2eI5913SsL

►Learn JavaScript in One Video – https://www.youtube.com/watch?v=onbBV0uFVpo

►Learn PHP In One Video – https://www.youtube.com/watch?v=xW7ro3lwaCI

►Django Complete Course In Hindi –
https://www.youtube.com/playlist?list=PLu0W_9lII9ah7DDtYtflgwMwpT3xmjXY9

►Machine Learning Using Python – https://www.youtube.com/playlist?list=PLu0W_9lII9ai6fAMHp-acBmJONT7Y4BSG

►Creating & Hosting A Website (Tech Blog) Using Python – https://www.youtube.com/playlist?list=PLu0W_9lII9agAiWp6Y41ueUKx1VcTRxmf

►Advanced Python Tutorials – https://www.youtube.com/playlist?list=PLu0W_9lII9aiJWQ7VhY712fuimEpQZYp4

►Object Oriented Programming In Python – https://www.youtube.com/playlist?list=PLu0W_9lII9ahfRrhFcoB-4lpp9YaBmdCP

►Python Data Science and Big Data Tutorials – https://www.youtube.com/playlist?list=PLu0W_9lII9agK8pojo23OHiNz3Jm6VQCH

Follow Me On Social Media
►Website (created using Flask) – http://www.codewithharry.com
►Facebook – https://www.facebook.com/CodeWithHarry
►Instagram – https://www.instagram.com/codewithharry/
►Personal Facebook A/c – https://www.facebook.com/geekyharis
Twitter – https://twitter.com/Haris_Is_Here

source

41 Comments

  1. <!DOCTYPE html>

    <html lang="en">

    <head>

    <meta charset="UTF-8">

    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Box Model</title>

    <style>

    .container{

    background-color: burlywood;

    border: 3px solid red;

    padding: 17px;

    margin: 34px;

    }

    </style>

    </head>

    <body>

    <div class="container">

    <h3>This is my heading</h3>

    <p id="first"> Lorem ipsum dolor sit amet consectetur adipisicing elit. Ab molestiae, voluptates asperiores, corrupti ex eligendi aspernatur velit atque veniam fuga obcaecati alias expedita.</p>

    </div>

    <div class="container">

    <h3>This is my heading</h3>

    <p id="second"> Lorem ipsum dolor sit amet consectetur adipisicing elit. Ab molestiae, voluptates asperiores, corrupti ex eligendi aspernatur velit atque veniam fuga obcaecati alias expedita.</p>

    </div>

    <div class="container">

    <h3>This is my heading</h3>

    <p id="third"> Lorem ipsum dolor sit amet consectetur adipisicing elit. Ab molestiae, voluptates asperiores, corrupti ex eligendi aspernatur velit atque veniam fuga obcaecati alias expedita.</p>

    </div>

    </body>

    </html>

  2. /* When one value is specified, it applies the same padding to all four sides.
    When two values are specified, the first padding applies to the top and bottom, the second to the left and right.
    When three values are specified, the first padding applies to the top, the second to the right and left, the third to the bottom.
    When four values are specified, the paddings apply to the top, right, bottom, and left in that order (clockwise). */

    Big thanks to Sir. Harry.

Leave A Reply

Please enter your comment!
Please enter your name here