Skip to main content

Command Palette

Search for a command to run...

There's a beginning of coding profession.

Try to Code in HTML to learn how I engaged myself in coding profession. Just try Some tags to learn how is it works.

Published
1 min read
There's  a beginning of coding profession.
D

I'm Devdutt Sharma. A "FULL STACK WEB DEVELOPER", author, and speaker. Ask me anything!

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>untitled Page</title>
</head>
<body>
    <h1 style="background-color: rgb(163, 165, 42);display: inline; "  title="Rahul"> Lorem ipsum dolor sit amet.</h1>
    <p style="background-color: aqua; " title="rahul again">Lorem <strong>ipsum</strong> dolor sit amet.</p>

    <a href="https://www.google.com/">Google</a>
    <a href="./index.html">Index Page</a>
    <a href="tel:+919149345817">Call Rahul</a>

    <style>
        table, th, td {
          border:1px solid black;
        }
        </style>
        <body>

        <h2>A basic HTML table</h2>

        <table style="width:40%">
          <tr>
            <th>Company</th>
            <th>Contact</th>
            <th>Country</th>
          </tr>
          <tr>
            <td>Alfreds Futterkiste</td>
            <td>Maria Anders</td>
            <td>Germany</td>
          </tr>
          <tr>
            <td>Centro comercial Moctezuma</td>
            <td>Francisco Chang</td>
            <td>Mexico</td>
          </tr>
        </table>

</body>
</html>