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

Online CSS Editor

<!DOCTYPE html>
<html>
<head>
    <title>Web Page Design</title>    
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS"
        crossorigin="anonymous">
</head>
<body>
<H1>Address</H1>
<address>
    <a href="mailto:[email protected]">[email protected]</a>
    <a href="tel:+1-204-555-1212">+1-204-555-1212</a>
</address>

<H1>HTML Tables and Formating</H1>
<table class="table">
    <caption>HTML Tables and Formatting</caption>
    <thead>
        <tr>
            <th>Head 1</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Body 1, row 1</td>
        </tr>
        <tr>
            <td>Body 1, row 2</td>            
        </tr>
    </tbody>
    <tbody>
        <tr>
            <td>Body 2, row 1</td>
        </tr>
        <tr>            
            <td>Body 2, row 2</td>
        </tr>
    </tbody>
    <tfoot>
        <tr>
            <td>Foot 1</td>
        </tr>
    </tfoot>    
</table>
</body>
</html>

Advertisements
Loading...

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