ASSIGNMNET 1

<!DOCTYPE html> <html> <head> <title> MY FIRST WEB PAGE </title> <body> <!-- heading --> <!-- paragraph --> <p>This is my first <b>paragraph</b> in my new <i>webpage</i>.This is going to be great.I am so excited I can hardly contain <b>myself</b>. Don't you just love paragraphs? I find them very useful. </p> <h1>Web Pages Are Exciting Too</h1> <P> Yes,That's right-web pages can be a lot of fun. Learning how to create web pages is easy and <b>entertaining</b>. This is my second <i>paragraph</i>. I hope you like it. <a href="https://www.google.com/"> Link to Google</a> </P> <li>Apple</li> <li>Bananas</li> <li>Pears</li> <li>Orangess</li> <li>Grapes</li> </ol> <ul> <li>Fruits <ul> <li>Apple</li> <li>Banana</li> <li>Mango</li> <li>Orange</li> </ul> </li> </ul> <ul> <li>Vegetables <ul> <li>Spinach</li> <li>Cauliflower</li> <li>Beetroot</li> </ul> </li> </ul> <li>Cereals</li> <li>Fruits</li> </body> </head> </html> <!DOCTYPE html>

<html>

    <head>

        <title>

            MY FIRST WEB PAGE

        </title>

        <body>

           <!-- heading -->

           <!-- paragraph -->

            <p>This is my first <b>paragraph</b> in my new <i>webpage</i>.This is going to be great.I am so  excited I can hardly contain <b>myself</b>. Don't you just love paragraphs? I find them very useful. </p>

            <h1>Web Pages Are Exciting Too</h1>

            <P> Yes,That's right-web pages can be a lot of fun. Learning how to create web pages is easy and <b>entertaining</b>. 

                This is my second <i>paragraph</i>. I hope you like it.



                <a href="https://www.google.com/">

                    Link to Google</a>

            </P>

                <li>Apple</li>

                <li>Bananas</li>

                <li>Pears</li>

                <li>Orangess</li>

                <li>Grapes</li>

            </ol>

            <ul>

                <li>Fruits

                    <ul>

                        <li>Apple</li>

                        <li>Banana</li>

                        <li>Mango</li>

                        <li>Orange</li>

                    </ul>

                </li>

            </ul>

            <ul>

                <li>Vegetables

                    <ul>

                        <li>Spinach</li>

                        <li>Cauliflower</li>

                        <li>Beetroot</li>

                    </ul>

                </li>

            </ul>

                        <li>Cereals</li>

                        <li>Fruits</li>

        </body>

    </head>

</html><!DOCTYPE html> <html> <head> <title> MY FIRST WEB PAGE </title> <body> <!-- heading --> <!-- paragraph --> <p>This is my first <b>paragraph</b> in my new <i>webpage</i>.This is going to be great.I am so excited I can hardly contain <b>myself</b>. Don't you just love paragraphs? I find them very useful. </p> <h1>Web Pages Are Exciting Too</h1> <P> Yes,That's right-web pages can be a lot of fun. Learning how to create web pages is easy and <b>entertaining</b>. This is my second <i>paragraph</i>. I hope you like it. <a href="https://www.google.com/"> Link to Google</a> </P> <li>Apple</li> <li>Bananas</li> <li>Pears</li> <li>Orangess</li> <li>Grapes</li> </ol> <ul> <li>Fruits <ul> <li>Apple</li> <li>Banana</li> <li>Mango</li> <li>Orange</li> </ul> </li> </ul> <ul> <li>Vegetables <ul> <li>Spinach</li> <li>Cauliflower</li> <li>Beetroot</li> </ul> </li> </ul> <li>Cereals</li> <li>Fruits</li> </body> </head> </html>

Comments