The HTML code for the Diggity Dog Grooming webpage includes the <title>, <h2>, <h3>, <p>, <ul>, and <li> tags.
- <!DOCTYPE html>
- <html>
- <head>
- <title>Diggity Dog Grooming</title>
- </head>
- <body>
- <h2>Welcome to Diggity Dog Grooming!</h2>
- <p>We offer professional dog grooming services to keep your furry friends looking their best.</p>
- <h3>Our Services</h3>
- <ul>
- <li>Bathing</li>
- <li>Hair trimming</li>
- <li>Nail clipping</li>
- </ul>
- <p>Contact us today to schedule an appointment!</p>
- </body>
- </html>