create a done of files
<title>My First HTML Page</title> <style> /* Simple CSS styling */ body { font-family: Arial, sans-serif; margin: 20px; background-color: #f9f9f9; } h1 { color: #2c3e50; } table { border-collapse: collapse; width: 50%; margin-top: 10px; } table, th, td { border: 1px solid #333; } th, td { padding: 8px; text-align: left; } a { color: #2980b9; text-decoration: none; } a:hover { text-decoration: underline; } </style><h1>Welcome to My Webpage</h1>
<p>This is a simple HTML page with basic elements.</p>
<h2>About</h2>
<p>HTML stands for <strong>HyperText Markup Language</strong>. It is used to structure content on the web.</p>
<h2>Image Example</h2>
<img src="https://via.placeholder.com/150" alt="Sample Image">
<h2>Link Example</h2>
<p>Visit <a href="https://www.example.com" target="_blank">Example Website</a> for more info.</p>
<h2>Table Example</h2>
<table>
<tr>
<th>Name</th>
<th>Role</th>
</tr>
<tr>
<td>Alice</td>
<td>Developer</td>
</tr>
<tr>
<td>Bob</td>
<td>Designer</td>
</tr>
</table>