-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontacts.html
44 lines (37 loc) · 1.43 KB
/
contacts.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Contacts | WeAffirm</title>
<link rel="stylesheet" href="./style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap"
rel="stylesheet">
<link rel="icon" href="./walogo.png" type="image/x-icon" />
<script type="module" src="./main.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
</head>
<body>
<heaader>
<div class="container navbar">
<div class="logobox">
<img id="logo" src="./walogo.png" alt="Logo of WeAffirm">
</div>
<div class="navbox">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./aboutus.html">About us</a></li>
<li id="current"><a href="./contacts.html">Contacts</a></li>
</ul>
</div>
</div>
</heaader>
<main class="contactsimg">
<div class="container">
<p class="contactsinfo">For any feedback, recommendations, and questions please contact us at
</div>
</main>
</body>
</html>