html elements and entities source code

hi I am sharing you the source code of web development tutorial #9


so, here we go!


<!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>elements in html</title>

</head>

<body>

    <a href="#">link 1</a>

    <a href="#">link 2</a>


    <p>this is a paragraph </p>

    <p> this is another paragraph</p>

    <br>

    <ul>

        <li>inline element </li>

        <li>block element </li>

    </ul>


    <br>

    <p>&copy; non visual tech  &lt;</p>

</body>

</html> 

Comments

Popular posts from this blog

forms in html source code

meta tags source code