-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
29 lines (29 loc) · 951 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
<!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>Croissant cafe</title>
<link rel="stylesheet" href="src/style.css" />
</head>
<body>
<div class="container">
<div class="nav">
<a href="index.html">Homepage</a>
<a href="photo.html">Photo</a>
<a href="contact.html">Contact us</a>
</div>
<h1>🥐 Contact us</h1>
<p>
To contact croissant.com, please email us at
<a href="mailto:hello@croissant.com">hello@croissant.com</a>
for more info
</p>
<img
src="https://images.unsplash.com/photo-1586211066541-09dd6bbc4fe4?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80"
alt="Croissant photo"
/>
</div>
</body>
</html>