Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Writing Data in Tables using HTML5

<!DOCTYPE html>
<html>
<head>
    <title>Web Page Design</title>
    <style>
        
    </style>
</head>
<body>
    <div title = "table">
        <table border = "5">
            <tr>
                <td>This is the first data cell</td>
                <td>This is the sec data cell</td>
            </tr>
            <tr>
                <td>This is <u>the third cell</u></td>
                <td>This is <b>finally</b> the <span style = "color:pink"><mark>final cell</mark></span>
        </table>
    </div>
    <br />
    <br />
    <div title = "shopping list">
        <ul type = "circle" >
            <li>Bob's sausages</li>
            <li>Fred's pizza sauce</li>
            <li>Supo's thicccc pizza crust</li>
        </ul>
        <div title = "footnotes">
            <dt><b><big>Bob's sausages</big></b></dt>
            <dd><b>Calories</b>: 240 per serving</dd>
            <dt><b><big>Fred's pizza sauce</big></b></dt>
            <dd><b>Calories</b>: 135 per cup</dd>
            <dt><b><big>Supo's thicccc pizza crust</big></b></dt>
            <dd><b>Calories</b>: 1040 per in<sup>2</sup></dd>
        </div>
    </div>
</body>
</html>

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.