index.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. }
  13. .card{
  14. height: 250px;
  15. width: 250px;
  16. border: 1px solid black;
  17. border-radius: 10px;
  18. padding: 15px;
  19. color: black;
  20. text-decoration: none;
  21. }
  22. h2{
  23. text-align: center;
  24. }
  25. img{
  26. max-width: 100%;
  27. max-height: 100%;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <h1>Woodworking in 3D</h1>
  33. <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>
  34. <div class="cards">
  35. <a class="card" href="/workbench">
  36. <h2>Workbench</h2>
  37. <img src="/image/workbench.webp"></img>
  38. </a>
  39. </div>
  40. </body>
  41. </html>