<!DOCTYPE html> <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> <!-- For Homework 7 - Problem 2 adapted by: YOUR NAME by: Sharon Tuttle last modified: 2025-03-17 adapted from the example at: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout you can run this using the URL: --> <head> <title> CSS flex play </title> <meta charset="utf-8" /> <link href="https://nrs-projects.humboldt.edu/~st10/styles/normalize.css" type="text/css" rel="stylesheet" /> </head> <body> <div class="wrapper"> <div class="number">One</div> <div class="number">Two</div> <div class="number">Three</div> </div> <footer> <hr /> <p> Validate by pasting .xhtml copy's URL into<br /> <a href="https://validator.w3.org/nu"> https://validator.w3.org/nu </a> or <a href="https://html5.validator.nu/"> https://html5.validator.nu/ </a> </p> </footer> </body> </html>