1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>SVG Tools</title>
7 <style>
8 body {
9 background-color: #ffcc00;
10 display: flex;
11 justify-content: center;
12 align-items: center;
13 height: 100vh;
14 margin: 0;
15 }
16 .container {
17 display: flex;
18 flex-direction: column;
19 align-items: center;
20 }
21 .drill {
22 width: 100px;
23 height: 100px;
24 fill: none;
25 stroke: black;
26 stroke-width: 2;
27 }
28 .screwdriver {
29 width: 100px;
30 height: 20px;
31 fill: none;
32 stroke: black;
33 stroke-width: 2;
34 }
35 .text {
36 font-size: 24px;
37 font-weight: bold;
38 margin-top: 20px;
39 }
40 </style>
41</head>
42<body>
43 <div class="container">
44 <svg viewBox="0 0 100 100" class="drill">
45 <!-- Drill SVG path -->
46 <path d="M50 10 L70 10 L70 30 L50 30 Z" />
47 <path d="M50 40 L70 40 L70 60 L50 60 Z" />
48 <path d="M30 50 L50 50 L50 70 L30 70 Z" />
49 </svg>
50 <svg viewBox="0 0 100 20" class="screwdriver">
51 <!-- Screwdriver SVG path -->
52 <path d="M10 10 L90 10" />
53 <path d="M50 10 L50 20" />
54 </svg>
55 <div class="text">SVG TOOLS</div>
56 </div>
57</body>
58</html>