forked from clydebankmedia/ClydeBank-Coffee-Shop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
53 lines (52 loc) · 1.56 KB
/
Copy pathcontact.html
File metadata and controls
53 lines (52 loc) · 1.56 KB
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Home</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header>
<div class="container">
<p>This page is under construction
<div class="title-header">
<div class="logo">
<a href="index.html">
<img src="images/logo.png" alt="Logo">
<img src="images/coffee-cup-icon.png" alt="Logo">
</a>
</div>
<div class="title">ClydeBank Coffee Shop</div>
</div>
</div>
</header>
<nav>
<div class="container">
<ul>
<li class="active"><a href="index.html">Menu</a></li>
<li><a href="about.html">About</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<main>
<div class="container">
</div>
</main>
<footer>
<div class="container">
<h2 class="text-white">Contact</h2>
<address>
<ul>
<li>Address: 4578 Marmora Road,Glasgow D04 89GR</li>
<li>Phone:<a href="tel:#"> 800-2345-6789</a></li>
<li>Opening Hours: 6am-4pm PST M-Th; 6am-3pm PST Fri</li>
<li>E-mail:<a href="mailto:#"> info@demolink.org</a></li>
</ul>
</address>
</div>
</footer>
</body>
</html>