| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>Woodworking 3D</title>
- <style>
- *{margin:0;padding:0;box-sizing:border-box;}
- .cards{
- display: flex;
- justify-content: space-around;
- width: 100%;
- }
-
- .card{
- height: 250px;
- width: 250px;
- border: 1px solid black;
- border-radius: 10px;
- padding: 15px;
- color: black;
- text-decoration: none;
- }
- h2{
- text-align: center;
- }
- img{
- max-width: 100%;
- max-height: 100%;
- }
- </style>
- </head>
- <body>
- <h1>Woodworking in 3D</h1>
- <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>
- <div class="cards">
- <a class="card" href="/workbench">
- <h2>Workbench</h2>
- <img src="/image/workbench.webp"></img>
- </a>
- </div>
- </body>
- </html>
|