Examples in HTML
? Examples in HTML
Here are some basic, practical HTML examples to get you started and understand how HTML works.
1. Simple Webpage Structure
<!DOCTYPE html><html><head> <title>My First Webpage</title></head><body> <h1>Welcome to My Website</h1> <p>This is a simple paragraph.</p></body></html>2. Adding Links and Images
<a href="https://www.example.com" target="_blank">Visit Example.com</a><br><img src="https://via.placeholder.com/150" alt="Placeholder Image">3. Using Lists
<h2>My Favorite Fruits</h2><ul> <li>Apple</li> <li>Banana</li> <li>Cherry</li></ul>4. Form Example
<form action="/submit" method="post"> <label for="name">Name:</label> <input type="text" id="name" name="username" required> <input type="submit" value="Submit"></form>5. Using Tables
<table border="1"> <tr> <th>Name</th> <th>Age</th> </tr> <tr> <td>Alice</td> <td>25</td> </tr> <tr> <td>Bob</td> <td>30</td> </tr></table>If you want, I can provide examples of CSS integration, JavaScript in HTML, or responsive design next!