DEV Community

Arun Kumar G
Arun Kumar G

Posted on

Day3 - input & document

<!DOCTYPE html>
<!-- html 1 to html5.x  -->
<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>Document</title>
</head>

<BODY>
    <!-- self closing tags -->
    <input type="text" />
    <br />
    <!-- password -->
    <input type="password" />
    <br />
    <!-- button -->
    <input type="button" value="Click me!" />
    <!-- datetime -->
    <br />
    <input type="datetime" />
    <br />
    <BUTTON>BUTTON</button>
    <Button>Button</Button>
    <input type="datetime-local" />
    <br />
    <input type="checkbox" />
    <br />
    <input type="radio" />
    <br />
    <textarea></textarea>
    <!-- https://www.w3schools.com/ -->


    <!-- headings -->
    <h1>Lorem Ipsum</h1>

    <h2>Why do we use it?</h2>

    <h6>Why do we use it?</h6>


    <p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at
        its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as
        opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing
        packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum'
        will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by
        accident, sometimes on purpose (injected humour and the like).</p>

    <div>
        i am inside a div
    </div>

    <span>its span here</span>
    <br />
    <label>Username</label>
    <br />
    <label>password</label>

    <!-- list tags -->
    <!-- table -->

</body>

</html>

Enter fullscreen mode Exit fullscreen mode

Top comments (0)