-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutUs.html
88 lines (72 loc) · 3.05 KB
/
aboutUs.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="node_modules/bootstrap/compiler/bootstrap.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="node_modules/bootstrap/compiler/style.css">
<title>FTNow - About Us</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container">
<a class="navbar-brand" href="index.html"><img src="img/logo.png" alt="FTNow"></a>
<button class="navbar-toggler" type="button" data-toggler="collapse" data-target="#navMenu">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navMenu">
<ul class="navbar-nav ml-auto">
<li class="nav-item ml-3">
<a class="nav-link" href="demo.html">Demo</a>
</li>
<li class="nav-item ml-3">
<a class="nav-link" href="contact.html">Contact</a>
</li>
<li class="nav-item ml-3">
<a style="color:#07B4EB !important" class="nav-link" href="aboutUs.html">About Us</a>
</li>
<li class="nav-item ml-3">
<a class="nav-link" href="privacy.html">Privacy</a>
</li>
</ul>
</div>
</div>
</nav>
<main>
<div class="centerStage container">
<div class="row">
<div class="col-12 text-center">
<h1><img style="width: 700px; height: 280px;"class="img-fluid" src="img/meet-the-team.jpg"></h1>
</div>
</div>
<div class="row my-2">
<p>
Format Text Now - <i>FTNow!</i> - is an easy-to-use web
application developed by a team of students that had difficults
in the past formatting text due to the complexity imposed by popular
text processors, thus deciding to create a way of doing quick text
formatting via the internet.
</p>
</div>
</div>
</main>
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<p>Copyright ©2020 Format Text Now - All rights reserved</p>
</div>
</div>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/popper.js/dist/umd/popper.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.js"></script>
<script src="node_modules/js/script.js"></script>
</body>
</html>