HTML Basics Presentation
HTML Basics Presentation
• ```html
• <html>
• <head>
• <title>Simple Page</title>
• </head>
• <body>
• <h1>Welcome!</h1>
• <p>This is a simple webpage.</p>
• <a href='https://example.com'>Learn more</a>
• </body>
• </html>
• ```