-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
35 lines (35 loc) · 922 Bytes
/
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
<!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" />
<title>🥐Contact croissant.com</title>
<link rel="stylesheet" href="src/styles.css" />
</head>
<body>
<h1>Contact us!</h1>
<p>To contact us please e-mail here:</p>
<div><a href="#" class="mail-link">[email protected]</a></div>
<div class="nav">
<a
href="index.html"
class="navigation-link"
title="Homepage croissant.com"
>Home</a
>
<a
href="photo.html"
class="navigation-link"
title="Photo gallery croissant.com"
>Gallery</a
>
<a
href="contact.html"
class="navigation-link"
title="Contacts croissant.com"
>Contact us</a
>
</div>
</body>
</html>