-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
72 lines (65 loc) · 1.64 KB
/
Copy pathabout.html
File metadata and controls
72 lines (65 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About Us - Nakul Tools</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body{
font-family: Arial, sans-serif;
background:#f8fafc;
color:#1e293b;
margin:0;
padding:0;
}
.container{
max-width:900px;
margin:auto;
padding:20px;
}
h1{
color:#2563eb;
margin-bottom:10px;
}
p{
line-height:1.7;
font-size:16px;
margin-bottom:15px;
}
.box{
background:#ffffff;
padding:20px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
}
</style>
</head>
<body>
<div class="container">
<div class="box">
<h1>About Us</h1>
<p>
<strong>Nakul Tools</strong> is a free online tools website created to help users
perform daily digital tasks easily, quickly, and securely.
</p>
<p>
Our goal is to provide simple, useful, and reliable tools that anyone can use
without technical knowledge. We focus on clean design, fast performance,
and mobile-friendly tools.
</p>
<p>
Nakul Tools includes various web-based utilities designed to save time and
improve productivity. We continuously work to improve existing tools and
add new ones based on user needs.
</p>
<p>
If you have any suggestions, feedback, or questions, feel free to contact us
through our Contact Us page.
</p>
<p>
Thank you for using <strong>Nakul Tools</strong>.
</p>
</div>
</div>
</body>
</html>