-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
32 lines (32 loc) · 957 Bytes
/
contact.html
File metadata and controls
32 lines (32 loc) · 957 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>iRIS</title>
<link rel="stylesheet" href="resources/style.css">
<script src="resources/IDs.js"></script>
</head>
<body>
<div class="container">
<div class="nav">
<img src="resources\logo.png" alt="iRIS logo" class="logo">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="banner">
<h1>Contact us</h1>
</div>
<div class="contact">
<p>You can email us at <a href="mailto:iris@publicist.com">iris@publicist.com</a></p>
</div>
</div>
<div class="footer">
<p>© 2023 by iRIS Group inc. All rights reserved.</p>
</div>
</body>
</html>