HTML Introduction

HTML Introduction

On this page

HTML Introduction

<!DOCTYPE html>
    <html>
    <head>
    <title>My First Webpage</title>
    </head>
    <body>
    
    <h1>Heading</h1>
    <p>Paragraph</p>
    
    </body>
    </html>
    

Output

Heading

Paragraph