
| HTML Code For Website |
| <!DOCTYPE html> |
| HTML Code For Website |
| HTML Tag |
| <!DOCTYPE html> <html> Content is written here </html> |
| HTML Code For Website |
| Head Section |
| <head> <title>My Dynamic Web Page</title> <meta charset="UTF-8"> <meta name="description" content="A description of my dynamic web page."> <meta name="keywords" content="dynamic, web, page"> <meta name="author" content="Sahil Chikara"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="styles.css"> <link rel="icon" href="favicon.ico"> <script src="script.js"></script> </head> |
| HTML Code For Website |
| Body Section |
| <body> Content goes here </body> |
| HTML Code For Website |
| Headings |
| <body> <h1>Introduction to HTML</h1> <h2>What is HTML?</h2> <h3>Basic Elements</h3> <h4>Types Of Basic Elements</h4> </body> |
| HTML Code For Website |
| Paragraph |
| <body> <h1>Introduction to HTML</h1> <p>This is a paragraph of text introducing HTML.</p> <h2>What is HTML?</h2> <p>This paragraph is providing information related to HTML.</p> </body> |
| HTML Code For Website |
| Links |
| <a href="https://www.example.com">Visit Example.com</a> |
| HTML Code For Website |
| Image |
| <img src="Dog.jpg" alt="Image of a Dog"> |
| HTML Code For Website |
| Ordered Lists |
| <ol> <li>First item</li> <li>Second item</li> <li>Third item</li> </ol> |
| HTML Code For Website |
| Unordered Lists |
| <ul> <li>Potato</li> <li>Tomato</li> <li>Bitter Guard</li> </ul> |
| HTML Code For Website |
| <!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> <ul> <li><strong>Car 1:</strong> <a href="car1.html">View details</a></li> <li><strong>Car 2:</strong> <a href="car2.html">View details</a></li> <li><strong>Car 3:</strong> <a href="car3.html">View details</a></li> </ul> <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> <h2>Contact Us</h2> <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> |