-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
97 lines (94 loc) · 4.43 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
<!DOCTYPE html>
<html>
<head>
<title>Noodle - About</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter">
<link rel="stylesheet" href="article.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript">
window.onload = function () {
document.getElementById("copyright").firstChild.innerHTML = `©${new Date().getFullYear()} Niclas Jung`;
};
</script>
</head>
<body>
<div class="article">
<div style="display: flex; align-items: center; justify-content: center;">
<a style="position: absolute; left: 10.5%;" href="index.html">Back to home</a>
<h2>About us</h2>
</div>
<p>
Welcome to <strong>Noodle</strong>, your go-to search engine for finding anything and everything on the internet. We are dedicated to
providing our users with the most relevant and accurate search results possible, all while ensuring their online
privacy
and security.
</p>
<p>
Our team of experienced developers and search engine experts have worked tirelessly to create an easy-to-use
platform
that delivers the most comprehensive search results. Whether you're looking for the latest news, shopping deals, or
just
trying to satisfy your curiosity, Noodle has got you covered.
</p>
<p>
We understand that your online privacy is important, which is why we have implemented advanced security measures to
ensure your data is safe and secure while using our platform. Additionally, we never sell or share your personal
information with third-party advertisers, giving you complete peace of mind while browsing the web.
</p>
<p>
At Noodle, we pride ourselves on providing a user-friendly interface that's easy to navigate. Our search engine is
designed to deliver fast and accurate results, with features such as autocomplete and spell check to make your
search
experience as smooth as possible.
</p>
<p>
But don't just take our word for it. See for yourself how Noodle can revolutionize your online search experience. <a
href="index.html" style="font-weight: 600;">Try us</a>
out today and start experiencing the difference.
</p>
<p>
Here is a table showcasing some of Noodle's key features:
</p>
<table>
<thead>
<tr>
<th>Feature</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>Comprehensive</td>
<td>Our search engine delivers the most relevant and accurate results</td>
</tr>
<tr>
<td>Secure</td>
<td>Advanced security measures ensure your data is safe and secure</td>
</tr>
<tr>
<td>Privacy-oriented</td>
<td>We never sell or share your personal information</td>
</tr>
<tr>
<td>User-friendly</td>
<td>Our platform is designed for easy navigation</td>
</tr>
<tr>
<td>Fast and Accurate</td>
<td>Features such as autocomplete and spell check improve accuracy</td>
</tr>
</tbody>
</table>
<p>
Thank you for choosing Noodle as your search engine. We are dedicated to delivering the best possible search experience
for our users and look forward to serving you for years to come.
</p>
<p>
The full source code to this website was written by Niclas Jung and is available <a target="_blank" rel="noopener noreferrer" href="https://github.com/Coinners/Noodle" style="font-weight: bold;">here</a><br>
Note that this excludes everything from the folder 'autocompletion' which was created after the tutorial from <a href="https://www.w3schools.com/howto/howto_js_autocomplete.asp" style="font-weight: bold;">w3schools.com</a>
</p>
</div>
<p class="copyright">©2023 Niclas Jung</p>
</body>
</html>