What's new

Help Pwede po pa code?

Alexander_Supertramp

Eternal Poster
Established
Joined
Jan 31, 2021
Posts
753
Reaction
467
Points
270
PTP and not sure po if allowed (if not po pa advise na lang po boss admins)
Mga Sirs naghahanap po friend ko ng pwede gumawa ng html assignment ng anak nya. baka may pwede po tumulong. static html page po na table. ok
419692826_364983972831982_2602282916758934391_n.jpg
 

Attachments

Hello! It's great that you're looking for someone to help with your friend's HTML assignment. As long as it's within the guidelines of the forum and the forum admins don't have any specific rules against it, it should be fine to seek assistance here.

To create a static HTML page with a table, you can follow these steps:

1. Open a text editor like Notepad, Sublime Text, or Visual Studio Code.
2. Start by creating the basic structure of an HTML document:

HTML:
<!DOCTYPE html>
<html>
<head>
    <title>Static HTML Page</title>
</head>
<body>

</body>
</html>

3. Inside the <body> tags, add the <table> element:

HTML:
<table>
    <!-- Table content goes here -->

</table>

4. Within the <table> element, add the table rows (<tr>) and table data cells (<td>):

HTML:
<table>
    <tr>
        <td>Cell 1</td>
        <td>Cell 2</td>
    </tr>
    <tr>
        <td>Cell 3</td>
        <td>Cell 4</td>
    </tr>
</table>

You can add more rows and cells as needed.

5. Save the file with a .html extension, such as index.html.

6. Open the HTML file in a web browser to see the table.

That's it! You now have a basic static HTML page with a table. Feel free to customize the table's contents, add headers (<th>), or modify the table's appearance using CSS.

If you have any specific requirements or need further assistance, please let us know. Good luck with the assignment!
 
Kung basic lang po na table try nyo po ito
HTML:
<!DOCTYPE html>
<html>
<head>
    <title>Static Table</title>
    <style type="text/css">
        table{
            width: 100%;
        }
        table, th, td {
            border: 1px solid black;
            border-collapse: collapse;
            text-align: center;
        }
        th, td {
            padding:5px 30px;
        }
    </style>
</head>
<body>
    <table>
        <thead>
            <th>TIME</th>
            <th style="background:#c2d3e7;">MONDAY</th>
            <th style="background:#cbccc4;">TUESDAY</th>
            <th style="background:#d3aaad;">WEDNESDAY</th>
            <th style="background:#bec0df;">THURSDAY</th>
            <th style="background:#adcb9c;">FRIDAY</th>
        </thead>
        <tbody>
            <tr>
                <td>7:00 - 7:10</td>
                <td colspan="5" style="background:#d4cacb;"></td>
            </tr>
            <tr>
                <td>7:10 - 8:10</td>
                <td style="background:#c2d3e7;"><strong>CLed/VE</strong><br>Mr. Olivay</td>
                <td style="background:#cbccc4;"><strong>CLed/VE</strong><br>Mr. Olivay</td>
                <td style="background:#d3aaad;"><strong>CLed/VE</strong><br>Mr. Olivay</td>
                <td style="background:#bec0df;"><strong>CLed/VE</strong><br>Mr. Olivay</td>
                <td style="background:#adcb9c;"><strong>English</strong><br>Mr. Relato</td>
            </tr>
            <tr>
                <td>8:10 - 9:10</td>
                <td style="background:#c2d3e7;"><strong>English</strong><br>Mr. Relato</td>
                <td style="background:#cbccc4;"><strong>Math</strong><br>Ms. Basa</td>
                <td style="background:#d3aaad;"><strong>English</strong><br>Mr. Relato</td>
                <td style="background:#bec0df;"><strong>Math</strong><br>Ms. Basa</td>
                <td style="background:#adcb9c;"><strong>Math</strong><br>Ms. Basa</td>
            </tr>
            <tr>
                <td>9:10 - 9:30</td>
                <td colspan="5" style="background:#c6a655;"></td>
            </tr>
            <tr>
                <td>9:30 - 10:30</td>
                <td style="background:#c2d3e7;"><strong>Science</strong><br>Ms. Ogalesco</td>
                <td style="background:#cbccc4;"><strong>Computer</strong><br>Mr. Peñano</td>
                <td style="background:#d3aaad;"><strong>TLE</strong><br>Ms. C. Lopez</td>
                <td style="background:#bec0df;"><strong>TLE</strong><br>Ms. C. Lopez</td>
                <td style="background:#adcb9c;"><strong>Filipino</strong><br>Mrs. Urellan</td>
            </tr>
            <tr>
                <td>10:30 - 11:30</td>
                <td style="background:#c2d3e7;"><strong>Math</strong><br>Ms. Basa</td>
                <td style="background:#cbccc4;"><strong>English</strong><br>Mr. Relato</td>
                <td style="background:#d3aaad;"><strong>Science</strong><br>Ms. Ogalesco</td>
                <td style="background:#bec0df;"><strong>Science</strong><br>Ms. Ogalesco</td>
                <td style="background:#adcb9c;"><strong>TLE</strong><br>Ms. C. Lopez</td>
            </tr>
            <tr>
                <td>11:30 - 12:10</td>
                <td colspan="5" style="background:#8fa8cf;"></td>
            </tr>
            <tr>
                <td>12:10 - 1:10</td>
                <td style="background:#c2d3e7;"><strong>Filipino</strong><br>Mrs. Urellan</td>
                <td style="background:#cbccc4;"><strong>MAPEH</strong><br>Mr. Blas</td>
                <td style="background:#d3aaad;"><strong>MAPEH</strong><br>Mr. Blas</td>
                <td style="background:#bec0df;"><strong>MAPEH</strong><br>Mr. Blas</td>
                <td style="background:#adcb9c;"><strong>AP</strong><br>Mrs. Bunag</td>
            </tr>
            <tr>
                <td>1:10 - 2:10</td>
                <td style="background:#c2d3e7;"><strong>MAPEH</strong><br>Mr. Blas</td>
                <td style="background:#cbccc4;"><strong>AP</strong><br>Mrs. Bunag</td>
                <td style="background:#d3aaad;"><strong>Filipino</strong><br>Mrs. Urellan</td>
                <td style="background:#bec0df;"><strong>Filipino</strong><br>Mrs. Urellan</td>
                <td style="background:#adcb9c;"><strong>Science</strong><br>Ms. Ogalesco</td>
            </tr>
            <tr>
                <td>2:10 - 3:10</td>
                <td style="background:#c2d3e7;"><strong>AP</strong><br>Mrs. Bunag</td>
                <td style="background:#ebebeb;"></td>
                <td style="background:#ebebeb;"></td>
                <td style="background:#ebebeb;"></td>
                <td style="background:#adcb9c;"><strong>Homeroom</strong><br>Mr. Olivay</td>
            </tr>
        </tbody>
    </table>
</body>
</html>
 
Kung basic lang po na table try nyo po ito
HTML:
<!DOCTYPE html>
<html>
<head>
    <title>Static Table</title>
    <style type="text/css">
        table{
            width: 100%;
        }
        table, th, td {
            border: 1px solid black;
            border-collapse: collapse;
            text-align: center;
        }
        th, td {
            padding:5px 30px;
        }
    </style>
</head>
<body>
    <table>
        <thead>
            <th>TIME</th>
            <th style="background:#c2d3e7;">MONDAY</th>
            <th style="background:#cbccc4;">TUESDAY</th>
            <th style="background:#d3aaad;">WEDNESDAY</th>
            <th style="background:#bec0df;">THURSDAY</th>
            <th style="background:#adcb9c;">FRIDAY</th>
        </thead>
        <tbody>
            <tr>
                <td>7:00 - 7:10</td>
                <td colspan="5" style="background:#d4cacb;"></td>
            </tr>
            <tr>
                <td>7:10 - 8:10</td>
                <td style="background:#c2d3e7;"><strong>CLed/VE</strong><br>Mr. Olivay</td>
                <td style="background:#cbccc4;"><strong>CLed/VE</strong><br>Mr. Olivay</td>
                <td style="background:#d3aaad;"><strong>CLed/VE</strong><br>Mr. Olivay</td>
                <td style="background:#bec0df;"><strong>CLed/VE</strong><br>Mr. Olivay</td>
                <td style="background:#adcb9c;"><strong>English</strong><br>Mr. Relato</td>
            </tr>
            <tr>
                <td>8:10 - 9:10</td>
                <td style="background:#c2d3e7;"><strong>English</strong><br>Mr. Relato</td>
                <td style="background:#cbccc4;"><strong>Math</strong><br>Ms. Basa</td>
                <td style="background:#d3aaad;"><strong>English</strong><br>Mr. Relato</td>
                <td style="background:#bec0df;"><strong>Math</strong><br>Ms. Basa</td>
                <td style="background:#adcb9c;"><strong>Math</strong><br>Ms. Basa</td>
            </tr>
            <tr>
                <td>9:10 - 9:30</td>
                <td colspan="5" style="background:#c6a655;"></td>
            </tr>
            <tr>
                <td>9:30 - 10:30</td>
                <td style="background:#c2d3e7;"><strong>Science</strong><br>Ms. Ogalesco</td>
                <td style="background:#cbccc4;"><strong>Computer</strong><br>Mr. Peñano</td>
                <td style="background:#d3aaad;"><strong>TLE</strong><br>Ms. C. Lopez</td>
                <td style="background:#bec0df;"><strong>TLE</strong><br>Ms. C. Lopez</td>
                <td style="background:#adcb9c;"><strong>Filipino</strong><br>Mrs. Urellan</td>
            </tr>
            <tr>
                <td>10:30 - 11:30</td>
                <td style="background:#c2d3e7;"><strong>Math</strong><br>Ms. Basa</td>
                <td style="background:#cbccc4;"><strong>English</strong><br>Mr. Relato</td>
                <td style="background:#d3aaad;"><strong>Science</strong><br>Ms. Ogalesco</td>
                <td style="background:#bec0df;"><strong>Science</strong><br>Ms. Ogalesco</td>
                <td style="background:#adcb9c;"><strong>TLE</strong><br>Ms. C. Lopez</td>
            </tr>
            <tr>
                <td>11:30 - 12:10</td>
                <td colspan="5" style="background:#8fa8cf;"></td>
            </tr>
            <tr>
                <td>12:10 - 1:10</td>
                <td style="background:#c2d3e7;"><strong>Filipino</strong><br>Mrs. Urellan</td>
                <td style="background:#cbccc4;"><strong>MAPEH</strong><br>Mr. Blas</td>
                <td style="background:#d3aaad;"><strong>MAPEH</strong><br>Mr. Blas</td>
                <td style="background:#bec0df;"><strong>MAPEH</strong><br>Mr. Blas</td>
                <td style="background:#adcb9c;"><strong>AP</strong><br>Mrs. Bunag</td>
            </tr>
            <tr>
                <td>1:10 - 2:10</td>
                <td style="background:#c2d3e7;"><strong>MAPEH</strong><br>Mr. Blas</td>
                <td style="background:#cbccc4;"><strong>AP</strong><br>Mrs. Bunag</td>
                <td style="background:#d3aaad;"><strong>Filipino</strong><br>Mrs. Urellan</td>
                <td style="background:#bec0df;"><strong>Filipino</strong><br>Mrs. Urellan</td>
                <td style="background:#adcb9c;"><strong>Science</strong><br>Ms. Ogalesco</td>
            </tr>
            <tr>
                <td>2:10 - 3:10</td>
                <td style="background:#c2d3e7;"><strong>AP</strong><br>Mrs. Bunag</td>
                <td style="background:#ebebeb;"></td>
                <td style="background:#ebebeb;"></td>
                <td style="background:#ebebeb;"></td>
                <td style="background:#adcb9c;"><strong>Homeroom</strong><br>Mr. Olivay</td>
            </tr>
        </tbody>
    </table>
</body>
</html>

Ito yung preview

1706967219460.png
 

Attachments

before chat gpt:

gawa ng ganyan sa excel then isave,
tapos iconvert to html
online search "excel to html"
 
Back
Top