-
Notifications
You must be signed in to change notification settings - Fork 0
/
ContactUs.html
94 lines (78 loc) · 4 KB
/
ContactUs.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact 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="contact-us">
<div class="container ">
<h1 class="contact-header proper-text" style="text-align:left;">Contact Us</h1>
<p class="contacts proper-text"><strong>
📍 15 Hrakleous St., Athens, ST 19007<br>
📞 123-456-7890<br>
@ [email protected]<br>
<a class="contact-tag" href="Home.html">🌐 StopIt<br></a>
</strong>
</p>
</div>
<main class="py-5">
<img class="img-fluid" src="Css/images/laptop.jpg" alt="session" width="825px" height="325px" style="border-radius: 25px;">
</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>