-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
87 lines (74 loc) · 2.89 KB
/
cart.html
File metadata and controls
87 lines (74 loc) · 2.89 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Almanahel Cart</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/cart.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Pattaya&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div id="logoDiv">
<img src="img/Almanahel.png" id="logoimg" alt="almanahel">
</div>
<h1>Almanahel</h1>
</div>
<nav role="navigation">
<div id="menuToggle">
<input type="checkbox" />
<!-- <div id="divSp"> -->
<span class="spanMenu"></span>
<span class="spanMenu"></span>
<span class="spanMenu"></span>
<!-- </div> -->
<ul id="menu">
<a href="index.html">
<li>Home</li>
</a>
<a href="about_us.html">
<li>about us</li>
</a>
<a href="game.html" target="_blank">
<li> Book Game!</li>
</a>
</ul>
</div>
</nav>
</header>
<main>
<section>
<!-- <div><img id="userCart" src="" alt=""> </div> -->
<p id="descrption"></p>
</section>
<div id="section">
<table id="tableCart"></table>
</div>
</main>
<footer id="foter">
<p class="copyright-text">Copyright © All Rights Reserved by
<a class="copyright-text" href="#">ALMANAHEL 2021</a>.
</p>
<!-- <div id="copIGht">
</div> -->
<img id="logofoot" src="img/Almanahel.png" alt="">
<div class="container">
<div class="row"></div>
<ul class="social-icons">
<li><a class="facebook" href="https://www.facebook.com/" target="_blank"><img src="img/FB.png"
alt=""></a></li>
<li><a class="twitter" href="https://twitter.com/?lang=en" target="_blank"> <img
src="img/TWITr.png" alt=""> </a></li>
<li><a class="dribbble" href="https://www.instagram.com/" target="_blank"><img
src="img/INSTA.png" alt=""></a></li>
<li><a class="linkedin" href="https://www.linkedin.com/" target="_blank"><img src="img/LINKIN.png" alt=""></a></li>
</ul>
</div>
</div>
</footer>
<script src="js/cart.js"></script>
</body>
</html>