-
Notifications
You must be signed in to change notification settings - Fork 0
/
AboutUs.html
90 lines (75 loc) · 4.37 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
89
90
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>About Us</title>
<link rel="stylesheet" href="Css/stylesheets.css">
<!-- Latest compiled and minified CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;700&family=Merriweather&family=Montserrat:wght@300;700;900&family=Public+Sans:wght@300;400&family=Sacramento&family=Ubuntu:wght@700&display=swap" rel="stylesheet">
<!-- Icons FAwesome CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<!-- Googlr fonts -->
<link href="https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navbar -->
<section class="header proper-text">
<div class="container">
<nav class="navbar navbar-expand-lg ">
<div class="container-fluid">
<a class="navbar-brand" href="Home.html">StopIt</a>
<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>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="AboutUs.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Events.html">Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Donations.html">Donations</a>
</li>
<li class="nav-item">
<a class="nav-link" href="ContactUs.html">Contact Us</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
</section>
<section id="about-us">
<main class="py-5">
<div class="text-center proper-text mx-auto " style="width: 550px;">
<h1 class="proper-text">StopIt</h1>
<h1 class="proper-text">we are a non-profit foundation that help people cut of their alcohol addiction</h1>
<p class="proper-text">We are dedicated to supporting and empowering anyone recovering from alcohol addiction.
Our founders have been where you are now. We understand what you need without you saying it</p>
<p class="proper-text">StopIt is here to help you make connections, find support, and guide your recovery journey.</p>
<p class="proper-text">The foundation can be supported by donations and volunteers.We organize many events for sharing our vision.</p>
</div>
</main>
</section>
<footer id="footer" class="py-3 proper-text">
<ul class="nav justify-content-center border-bottom pb-3 mb-3">
<li class="nav-item"><a href="Home.html" class="nav-link px-2" data-abc="true">Home</a></li>
<li class="nav-item"><a href="AboutUs.html" class="nav-link px-2 ">About us</a></li>
<li class="nav-item"><a href="Events.html" class="nav-link px-2 ">Events</a></li>
<li class="nav-item"><a href="Donations.html" class="nav-link px-2 ">Donations</a></li>
<li class="nav-item"><a href="ContactUs.html" class="nav-link px-2 ">Contact Us</a></li>
</ul>
<p class="text-center">© Copyright 2022 by StopIt</p>
</div>
</footer>
<!-- JQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<!-- Latest compiled JavaScript -->
<script src="index.js" charset="utf-8"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2" crossorigin="anonymous"></script>
</body>
</html>