| 1 | <!DOCTYPE html> |
| 2 | <html lang="en"> |
| 3 | <head> |
| 4 | <meta charset="UTF-8"> |
| 5 | <title>My App - Home</title> |
| 6 | <link rel="stylesheet" href="css/app.css"> |
| 7 | </head> |
| 8 | <body> |
| 9 | <div class="container"> |
| 10 | <h1>Welcome</h1> |
| 11 | <div class="nav"> |
| 12 | <a href="/">Home</a> |
| 13 | <a href="/user">Profile</a> |
| 14 | </div> |
| 15 | </div> |
| 16 | </body> |
| 17 | </html> |
| 18 |