-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
121 lines (106 loc) · 4.81 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
<!doctype html>
<html lang="en">
<head>
<title>About</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Basic stylesheet-->
<link rel="stylesheet" href="style.css">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
</head>
<body>
<div class="container">
<!--reactive navigation bar-->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<!--Logo/home link-->
<a class="navbar-brand" href="index.html">
<img src="logo-main.png"
alt="Company logo" style="height:200px;width:200px;"></a>
<!--button for when nav bar is collapsed-->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!--main nav links-->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<!--home -->
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html" style="font-size:25px;">Home</a>
</li>
<!-- projects dropdown-->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button"
data-bs-toggle="dropdown" aria-expanded="false" style="font-size:25px;">
Projects
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<li><a class="dropdown-item" href="project_1.html">Project 1</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="project_2.html">Project 2</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="project_3.html">Project 3</a></li>
</ul>
</li>
<!--team members-->
<li class="nav-item">
<a class="nav-link" href="meetOurTeam.html" style="font-size:25px;">Meet our team</a>
</li>
<!--about company-->
<li class="nav-item">
<a class="nav-link active" href="about.html" style="font-size:25px;">About</a>
</li>
</ul>
</div>
</div>
</nav>
<!--main body-->
<div class="p1">
<h1 class="mt-5">What is DataTree?</h1>
<p class="lead">
We are the leading software developers for all of your application requirements.
We design simple and interactive applications as well as provide services to help you maximize your productivity and efficiency. We distinguish ourselves from the competition by providing exceptional service at affordable prices.
</p>
</div>
<div class="p2">
<h1 class="mt-5">The Main Pillars of DataTree</h1>
<ul class="pillars">
<li class="lead">
<b>Security:</b> Both the security of the application and of the clients will always be our main priority. When new development starts, security is always the first aspect addressed. It is critical in our mission to create and maintain a secured application before it reaches the user.
</li>
<li class="lead">
<b>Right to privacy:</b> Every person has the right to protect his/her privacy. We live in troubled times, where large companies feel they have the right to bully and financially ruin a person. We won't and will never stand for this. We will continue to ensure your right to privacy, while allowing you to use the tools at your own disposal to protect yourself.
</li>
</ul>
</div>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ" crossorigin="anonymous">
</script>
</div>
</body>
<footer>
<div class="container">
<div class="footer-bottom">
<a class="footer-logo" href="index.html">
<img src="logo-footer.png" alt="DataTree"/>
DataTree
</a>
<ul class="privacy-menu">
<li>
<a href="terms.html">Terms & Conditions</a>
</li>
<li>
<a href="privacy.html">Privacy Policy</a>
</li>
</ul>
<p class="copyright">DataTree Inc. | Copyright 2023 | All rights reserved</p>
</div>
</div>
</footer>
</html>