Python krushnakumar

<!-- index.html -->

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>Am I HTML already?</title>
</head>
<body>
<h1>Hello, World Wide Web!</h1>
<p>This is my first website.</p>

<h2>About me</h2>
<p>I'm a Python programmer and a bug collector.</p>

<h3>Random facts</h3>
<p>I don't just <em>like</em> emoji,<br>
I <strong>love</strong> emoji!</p>
<p>My most-used emoji are:</p>
<ol>
    <li>🐞</li>
    <li>🐍</li>
    <li>👍</li>
</ol>

<h2>Links</h2>
<p>My favorite websites are:</p>
<ul>
    <li>realpython.com</li>
    <li>python.org</li>
    <li>pypi.org</li>
</ul>
</body>
</html>

Am I HTML already?

Hello, World Wide Web!

This is my first website.

About me

I'm a Python programmer and a bug collector.

Random facts

I don't just like emoji,
I love emoji!

My most-used emoji are:

  1. 🐞
  2. 🐍
  3. 👍

Links

My favorite websites are:

  • realpython.com
  • python.org
  • pypi.org

Comments

Popular posts from this blog

Krushnakumar Bhusara