-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
59 lines (56 loc) · 2.28 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
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- Meta Tags -->
<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="to sell shoes, boots and sandals">
<meta name="keywords" content="shoes, boots, sandals, online store">
<meta name="author" content="Park">
<!-- Title -->
<title>Dan Online Store</title>
<!--CSS Stylesheets-->
<link rel="stylesheet" type="text/css" href="about.css">
</head>
<body>
<div class="wrap">
<header>
<div class="dan">
<div class="logo-container">
<img class="head-item logo" src="pictures/logo.png" alt="danstore's logo">
<h1 class="head-item">Dan Online Store</h1>
</div>
<nav class="top-nav">
<ul>
<li class=nav-item><a href="index.html">Home</a></li>
<li class=nav-item><a href="about.html">About</a></li>
<li class=nav-item><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main class="container">
<section class="item">
<h2 class="dan1">Contact us</h2>
<br>
<img class="body-item img" src="pictures/welcome.png" alt="Dan Store" />
<h2>Dan Online Store</h2>
<p>100 Cherryhill Circle
<!--Make line break-->
<br>London, ON N6H2L9
<!--People can call immediately when they click this number-->
<br><strong>Tel:</strong> <a href="tel:+2265039185">226 503 9185</a>
<!--People do not need to type the email address; they can email immediately when they click this email-->
<br><strong>Email:</strong> <a href="mailto:[email protected] ">[email protected]</a>
</p>
</section>
</main>
<br />
<footer>
<p>© Dan Vu 2021</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
</footer>
</div>
</body>
</html>