404.blade.php 1004 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>404 Not Found</title>
  7. <style>
  8. body {
  9. font-family: Arial, sans-serif;
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. height: 100vh;
  14. margin: 0;
  15. background-color: #f0f0f0;
  16. color: #333;
  17. }
  18. .container {
  19. text-align: center;
  20. }
  21. h1 {
  22. font-size: 72px;
  23. margin: 0;
  24. }
  25. p {
  26. font-size: 24px;
  27. margin: 20px 0;
  28. }
  29. a {
  30. color: #007bff;
  31. text-decoration: none;
  32. font-size: 18px;
  33. }
  34. a:hover {
  35. text-decoration: underline;
  36. }
  37. </style>
  38. </head>
  39. <body>
  40. <div class="container">
  41. <h1>404</h1>
  42. <p>页面未找到</p>
  43. </div>
  44. </body>
  45. </html>