-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (114 loc) · 4.18 KB
/
index.html
File metadata and controls
124 lines (114 loc) · 4.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tool Box - Professional</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="header-container">
<div class="logo">
<img src="logo.png" alt="Logo">
<span>Tool App</span>
</div>
<nav>
<ul>
<li><a href="about/index.html">About Us</a></li>
<li class="dropdown">
<a href="#">Tools <i class="fas fa-caret-down"></i></a>
<ul class="dropdown-menu">
<li><a href="tools/calculator/index.html">Calculator</a></li>
<li><a href="tools/text generator/index.html">Text Generator</a></li>
<li><a href="tools/not app/index.html">Note App</a></li>
<li><a href="tools/currency convertor/index.html">Currency Converter</a></li>
<li><a href="tools/drawing app/index.html">Drawing App</a></li>
<li><a href="tools/image editor/index.html">Image Editor</a></li>
</ul>
</li>
</ul>
</nav>
<div class="login-btn">
<a href="login/index.html"><button><i class="fa fa-user"></i>Login</button></a>
</div>
</div>
</header>
<main>
<section class="projects-grid">
<div class="project-card">
<img src="pics/project1.jpg" alt="Calculator">
<h3>Calculator</h3>
<p>Professional calculator tool for quick calculations.</p>
<div class="btn-group">
<a href="tools/calculator/index.html" class="btn-primary">View Tool</a>
</div>
</div>
<div class="project-card">
<img src="pics/project2.jpg" alt="Note App">
<h3>Note App</h3>
<p>Keep your tasks organized and efficient.</p>
<div class="btn-group">
<a href="tools/not app/index.html" class="btn-primary">View Tool</a>
</div>
</div>
<div class="project-card">
<img src="pics/project3.jpg" alt="Text Generator">
<h3>Text Generator</h3>
<p>Generate professional text content easily.</p>
<div class="btn-group">
<a href="tools/text generator/index.html" class="btn-primary">View Tool</a>
</div>
</div>
<div class="project-card">
<img src="pics/project4.jpg" alt="Image Editor">
<h3>Image Editor</h3>
<p>Edit images with professional filters and effects.</p>
<div class="btn-group">
<a href="tools/image editor/index.html" class="btn-primary">View Tool</a>
</div>
</div>
<div class="project-card">
<img src="pics/project5.jpg" alt="Weather-dashboard">
<h3>Weather-dashboard</h3>
<p>Create amazing drawings directly in your browser.</p>
<div class="btn-group">
<a href="tools/weather dashboard/index.html" class="btn-primary">View Tool</a>
</div>
</div>
<div class="project-card">
<img src="pics/project6.jpg" alt="Currency Converter">
<h3>Currency Converter</h3>
<p>Convert currencies fast with live rates.</p>
<div class="btn-group">
<a href="tools/currency convertor/index.html" class="btn-primary">View Tool</a>
</div>
</div>
<div class="project-card">
<img src="pics/project7.jpg" alt="Drawing app">
<h3>Drawing app</h3>
<p>Some professional description for this tool.</p>
<div class="btn-group">
<a href="tools/drawing app/index.html" class="btn-primary">View Tool</a>
</div>
</div>
<div class="project-card">
<img src="pics/project8.jpg" alt="Memory-game">
<h3>Memory-game</h3>
<p>Some professional description for this tool.</p>
<div class="btn-group">
<a href="tools/memory game/index.html" class="btn-primary">View Tool</a>
</div>
</div>
</section>
</main>
<footer>
<div class="footer-container">
<p>Made with ❤️</p>
<div>.</div>
<img src="logo.png" alt="Logo">
</div>
</footer>
</body>
</html>