-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
178 lines (152 loc) · 5.61 KB
/
about.html
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | Unit Converter</title>
<meta name="description"
content="Simple real time unit converter app to provide day to day problems a simple solution online." />
<meta name="keywords"
content="arun, arun neupane, arun dada , arundada9000, arunneupane20, about arun , who is arun neupane" />
<link rel="shortcut icon" href="./images/about.webp" type="image/x-icon">
<link rel="stylesheet" href="./styles.css">
<style>
body {
margin: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
background-color: #f4f4f9;
color: #333;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 2rem;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin-top: 2rem;
flex: 1;
}
.container h1 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 1rem;
color: #0044cc;
}
.container p {
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 1.5rem;
text-align: justify;
}
.signature {
height: 1.5rem;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.2rem;
color: #333;
font-style: italic;
}
.signature p {
padding: 18px 0;
}
.signature span {
font-weight: bold;
}
.code-link {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
}
.code-link a {
color: black;
text-decoration: none;
font-weight: bold;
}
@media (max-width:768px) {
body {
padding: 0;
}
h1 {
font-size: 1.5rem;
padding: 0rem 0;
}
.container {
padding: 20px;
}
}
</style>
<link rel="stylesheet" href="./footer.css">
</head>
<body>
<nav>
<div class="menu-toggle" onclick="toggleMenu()">
<span></span>
<span></span>
<span></span>
</div>
<div class="nav-links">
<a href="./index.html">Home</a>
<a href="./data.html">Data <span id="converterText">Converter</span></a>
<a href="./length.html">Length <span id="converterText">Converter</span></a>
<a href="./time.html">Time <span id="converterText">Converter</span></a>
<a href="./mass.html">Mass <span id="converterText">Converter</span></a>
<a href="./temperature.html">Temperature <span id="converterText">Converter</span></a>
<a href="./numbersystem.html">Number System <span id="converterText">Converter</span></a>
<a href="./discount.html">Discount <span id="converterText">Calculator</span></a>
<a href="./power.html">Power mod <span id="converterText">Calculator</span></a>
<a href="./text.html">Text Styler</a>
</div>
</nav>
<div class="container">
<div class="convert-logo-div">
<h1>About This App</h1>
<img src="./images/animated/about.gif" alt="Convert" class="description-image">
</div>
<p>
Welcome to the Unit Converter App! This application is designed to simplify conversions across various units
of measurement, making it easier for you to switch between different systems—whether you're working with
length, mass, time, temperature, or other units.
</p>
<p>
With an intuitive interface and quick calculation results, our goal is to enhance your productivity and
ensure you have the most accurate information at your fingertips. Whether you're a student, engineer, or
just someone who deals with measurements regularly, this app is here to assist you.
</p>
<p>
The app supports a wide range of unit conversions, all within one simple platform. It was created with the
user in mind, and we're always looking for ways to improve it, so feel free to provide feedback!
<br>
Technology Used : Vanilla html , css , js.
</p>
<div class="signature">
<p>Made with </p>
<img src="./images/animated/heart.gif" alt="Convert" class="description-image">
<p> by <span>Arun Neupane</span></p>
</div>
</div>
<div class="code-link">
<img src="./images/animated/software.gif" alt="Source code" class="description-image">
<p>Source code available <a href="https://github.com/arundada9000/Unit-Converter">Here</a></p>
</div>
<footer>
<div class="footer-container">
<div class="footer-info">
<p>© 2024 Arun Neupane. All rights reserved.</p>
<p>Made with ❤️ by Arun Neupane</p>
</div>
<div class="footer-links">
<a href="./about.html">About</a>
<a href="./privacy.html">Privacy Policy</a>
<a href="./contact.html">Contact</a>
</div>
</div>
</footer>
<script src="./nav.js"></script>
</body>
</html>