-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
25 lines (25 loc) · 913 Bytes
/
Copy pathcart.html
File metadata and controls
25 lines (25 loc) · 913 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Add to cart in javascript</title>
<link rel="icon" type="image/png" href="carticon.png">
<link rel="stylesheet" href="style.css">
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
</head>
<body>
<a href="index.html">
<nav id="navbar" class="navbar">
<h1 id="heading01">Add To Cart In Javascript</h1>
<img src="carticon.png" id="carticon">
<span id="cartnumber" ></span>
</nav>
</a>
<div id="allshopproduct"></div>
<div id="totalbillbox"></div>
<div>dd</div>
</body>
<script src="cart.js"></script>
</html>