-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.html
More file actions
37 lines (37 loc) · 1.18 KB
/
products.html
File metadata and controls
37 lines (37 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3957772349487941"
crossorigin="anonymous"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>iRIS Store</title>
<link rel="stylesheet" href="resources/style.css">
<script src="resources/IDs.js"></script>
<script src="scripts/products.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>iRIS Store</h1>
<p>The online store for innovative and reliable tech products</p>
</div>
<div class="products">
<h2>All Products</h2>
<div class="container"></div>
</div>
</div>
<div class="footer">
<p>© 2023 by iRIS Group inc. All rights reserved.</p>
</div>
</body>
</html>