index.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Woodworking 3D</title>
  6. <style>
  7. *{margin:0;padding:0;box-sizing:border-box;}
  8. .cards{
  9. display: flex;
  10. justify-content: space-around;
  11. width: 100%;
  12. margin-top: 35px;
  13. }
  14. .card{
  15. display: flex;
  16. flex-direction: column;
  17. justify-content: space-around;
  18. align-items: center;
  19. height: 250px;
  20. width: 250px;
  21. border: 1px solid black;
  22. border-radius: 10px;
  23. padding: 15px;
  24. color: black;
  25. text-decoration: none;
  26. }
  27. h2{
  28. text-align: center;
  29. }
  30. img{
  31. max-width: 100%;
  32. max-height: 75%;
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <h1>Woodworking in 3D</h1>
  38. <p>This is a just a collection of my completed or planned woodworking projects. I found that I needed to plan out the projects that I was going to do in order to avoid mistakes and unforeseen design issues. So I decided to plan them out first by building them in 3D. Check them out, or don't, whatever...</p>
  39. <div class="cards">
  40. <a class="card" href="/workbench">
  41. <h2>Workbench</h2>
  42. <img src="/image/workbench.webp">
  43. </a>
  44. <a class="card" href="/patio-table">
  45. <h2>Patio Table</h2>
  46. <img src="/image/patioTable.webp">
  47. </a>
  48. </div>
  49. </body>
  50. </html>