-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
50 lines (49 loc) · 1.41 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="You can find the information to contact us here"
/>
<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 rel="stylesheet" href="/css/styles.css" />
<title>Contact Us - Croissant.com</title>
</head>
<body>
<div class="container">
<h1>🥐 Contact Us 🥐</h1>
<p>
To contact croissant.com, please email us at
<a class="contact-link" href="mailto:[email protected]">
>
for more info.
</p>
<div class="navigation-links m-5">
<a class="principal-links" href="/" title="Takes you to homepage"
>Homepage</a
>
<a
class="principal-links"
href="/photo.html"
title="See croissants images"
>Photo</a
>
<a
class="principal-links"
href="/contact.html"
title="Get the contact information"
>Contact</a
>
</div>
</div>
</body>
</html>