0% found this document useful (0 votes)
74 views5 pages

SVKM's NMIMS University Mukesh Patel School of Technology Management & Engineering

The document provides instructions for a practical assignment on HTML tags. Students are asked to create an HTML page with their batch and roll number, an ordered list with nested lists, and a table with flowers, colors, petals and thorns. Screenshots of the output are also required to be submitted.

Uploaded by

ritika sahu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
74 views5 pages

SVKM's NMIMS University Mukesh Patel School of Technology Management & Engineering

The document provides instructions for a practical assignment on HTML tags. Students are asked to create an HTML page with their batch and roll number, an ordered list with nested lists, and a table with flowers, colors, petals and thorns. Screenshots of the output are also required to be submitted.

Uploaded by

ritika sahu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

SVKM’s NMIMS University

Mukesh Patel School of Technology Management & Engineering

MCA SEMESTER III

SUBJECT: Web Technologies Practical Assignment: 1B


Part A (To be referred by students)

Topic: Understand the HTML Tags

Aim: Understand the HTML Tags

a) Create an HTML page with Batch no and roll no as title


b) Create a the following List with font as Times Roman size 14 :
I. Sunflower
a. Yellow
II. Rose
a. Red
III. Vinca
a. Pink
i. Five
ii. Six
b. White
IV. Daffodil
c) Create a the following table with font as Times Roman size 10 :
Flowers Colors Petals Thorns
Rose Five Yes
Eight
Pituna
Sunflowe
Six Nine No
r
Vinca Five

Part B (to be completed by students)

(Students must submit the soft copy as per the following segments. The soft copy must
be uploaded on the portal. The filename should be Rollno_Name_Practical1 eg.
A001_John William_Practical1)

Roll No.: Name:


Prog/Yr/Sem: Batch:
Date of Experiment: Date of Submission:

a. Attach the code


Create an HTML page with Batch no and roll no as title
<!DOCTYPE html>
<html>
    <head>

    </head>
    <body>
        <h1>BATCH 2</h1>
        <h1>ROLL NO:A047</h1>
    </body>
</html>

Create a the following List with font as Times Roman size 14 :


V. Sunflower
a. Yellow
VI. Rose
a. Red
VII. Vinca
a. Pink
i. Five
ii. Six
b. White
VIII. Daffodil
<!DOCTYPE html>
<html>
    <head>
        Order List
    </head>
    <body>
        <ol type="I">
            <li>Sunflower</li>
            <ol type="a">
                <li>Yellow</li>
            </ol>
            <li>Rose</li>
            <ol type="a">
                <li>Red</li>
            </ol>
            <li>Vinca
            <ol type="a">
                <li>Pink
                    <ol type="i">
                        <li>Five</li>
                        <li>Six</li>
                    </ol>
                <li>White</li>
                </li>
            </li>
            </ol>
            <li>Daffodil</li>
        </ol>
    </body>
</html>

Create a the following table with font as Times Roman size 10 :


Flowers Colors Petals Thorns
Rose Five Yes
Eight
Pituna Six No
Sunflowe Nine
r
Vinca Five
<!DOCTYPE html>
<html>
    <head>
        TABLES
    </head>
    <body>
        <table border="2" style="font-size:14px">
            <tr>
                <th>
                    Flowers
                </th>
                <th>
                    Colors
                </th>
                <th>
                    Petals
                </th>
                <th>
                    Thorns
                </th>
            </tr>
            <tr>
                <td>
                    Rose
                </td>
                <td>
                    Five
                </td>
                <td rowspan="2">
                    Eight
                </td>
                <td>
                    Yes
                </td>
            </tr>
            <tr>
                <td>
                    Pituna
                </td>
                <td rowspan="3">
                    Six
                </td>
                <td rowspan="3">
                    No
                </td>
            </tr>
            <tr>
                <td>
                    Sunflower
                </td>
                <td>
                    Nine
                </td>
            </tr>
            <tr>
                <td>
                    Vinca

                </td>
                <td>
                    Five
                </td>
            </tr>
        </table>
    </body>
</html>

a. Attach the screen shot of the output


Create an HTML page with Batch no and roll no as title

Create a the following List with font as Times Roman size 14 :


IX. Sunflower
a. Yellow
X. Rose
a. Red
XI. Vinca
a. Pink
i. Five
ii. Six
b. White
XII. Daffodil
Create a the following table with font as Times Roman size 10 :
Flowers Colors Petals Thorns
Rose Five Yes
Eight
Pituna
Sunflowe
Six Nine No
r
Vinca Five

You might also like