89.1k views
1 vote
Situation: Review the Diggity Dog Groomingwebpage below and write the HTML code that was used to create this page, including all the required tags.

Situation: Review the Diggity Dog Groomingwebpage below and write the HTML code that-example-1
User Chrisis
by
8.2k points

1 Answer

2 votes

The HTML code for the Diggity Dog Grooming webpage includes the <title>, <h2>, <h3>, <p>, <ul>, and <li> tags.

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Diggity Dog Grooming</title>
  5. </head>
  6. <body>
  7. <h2>Welcome to Diggity Dog Grooming!</h2>
  8. <p>We offer professional dog grooming services to keep your furry friends looking their best.</p>
  9. <h3>Our Services</h3>
  10. <ul>
  11. <li>Bathing</li>
  12. <li>Hair trimming</li>
  13. <li>Nail clipping</li>
  14. </ul>
  15. <p>Contact us today to schedule an appointment!</p>
  16. </body>
  17. </html>
User Ryan Dlugosz
by
8.2k points