
| HTML Code Example Of A Basic Web Page |
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" <title>My First HTML Page</title> </head> <body> <h1>Welcome to My Website</h1> <p>This is a paragraph of text on my first HTML page.</p> </body> </html> |
| HTML Code Example For Adding Paragraph And Headings |
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>About Headings and Paragraphs</title> </head> <body> <h1>Main Heading</h1> <h2>Subheading</h2> <p>This is a paragraph under the subheading.</p> <h3>Another Subheading</h3> <p>This is another paragraph under a different subheading.</p> </body> </html> |
| HTML Code Example For Adding Links |
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Links Example</title> </head> <body> <h1>Welcome to My Website</h1> <p>Check out my favorite website: <a href="https://www.example.com>Example.com</a> </p> </body> </html> |
| HTML Code Example |
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Adding Images Example</title> </head> <body> <h1>Welcome to My Website</h1> <p>Here is an image of a beautiful scenery:</p> <img src="https://www.image.com/scenery.jpg" alt="Beautiful Scenery" width="500"> </body> </html> |
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Cars Store</title> </head> <body> <h1>Welcome to the Cars Store</h1> <p>At the Cars Store, we offer a wide selection of vehicles to meet your needs.</p> <h2>Featured Cars</h2> <p> Below you will find all the featured cars, available with us</p> <h2>About Us</h2> <p>The Cars Store has been serving customers for over 20 years. We take pride in offering quality vehicles and excellent customer service.</p> <h3>Contact Us</h3> <p>For inquiries or to schedule a test drive, please <a href="contact.html">contact us</a>.</p> <img src="car.jpg" alt="Car Image" width="300"> <p>We look forward to seeing you at the Cars Store!</p> </body> </html> |