-
Notifications
You must be signed in to change notification settings - Fork 0
/
orders.html
144 lines (126 loc) · 5.48 KB
/
orders.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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>yFone</title>
<link rel='stylesheet' href='./assets/css/style.css' />
<link rel='stylesheet' href='./assets/css/form.css' />
<link rel='stylesheet' href='./assets/css/products.css' />
<link rel='stylesheet' href='./assets/css/cart.css' />
<link rel='stylesheet' href='./assets/css/product.css' />
</head>
<body>
<nav>
<div class="container nav-container">
<a class="navbar-brand" href="#">
<img src="./assets/images/logo.png" alt="Your logo" title="Your logo" style="height:4rem;" />
</a>
<ul class="nav-menu">
<li><a href="/">HOME</a></li>
<li><a href="products.html">PRODUCTS</a></li>
<li>
<a class="nav-link" href="cart.html">CART</a>
</li>
<li class="nav-item">
<a class="nav-link" href="orders.html">ORDERS</a>
</li>
<li class="account-open">
<a style="text-transform: uppercase;">Gokul</a>
<ul class="account-menu">
<li>
<a href="my-account.html">MY ACCOUNT</a>
</li>
<li>
<a href="">LOGOUT</a>
</li>
</ul>
</li>
</ul>
<button id="open-menu-btn"><img src="./assets/icons/menu-black.png" alt="" srcset=""></button>
<button id="close-menu-btn"><img src="./assets/icons/close-black.png" alt=""></button>
</div>
</nav>
<footer>
<div class="container footer-container">
<div class="footer-1">
<!-- <a href="index.html" class="footer-logo"><h4></h4></a> -->
<a class="footer-logo" href="index.html">
<img src="./assets/images/logo.png" alt="Your logo" title="Your logo" />
</a>
<!-- <p>Everyone comes to the crossroads of thier life and our mission is to help them
to choose the right path.</p> -->
<p>Our mission is to help students choose the right path when they are stuck in crossroads of their
life.</p>
</div>
<div class="footer-2">
<h4>Permalinks</h4>
<ul class="permalinks">
<li><a href="/">Home</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="signup.html">Signup</a></li>
<li><a href="cart.html">Cart</a></li>
</ul>
</div>
<div class="footer-3">
<h4>Privacy</h4>
<ul class="privacy">
<li><a href="">Privacy Policy</a></li>
<li><a href="">Terms and Conditions</a></li>
<li><a href="">Privacy and Security</a></li>
</ul>
</div>
<div class="footer-4">
<h4>Contact Us</h4>
<p>+91 7356660572</p>
<p>[email protected]</p>
<ul class="footer-socials">
<li><a href="" target="_blank"><i class="fa-brands fa-instagram"></i></a></li>
<li><a href="" target="_blank"><i class="fa-brands fa-youtube"></i></a></li>
<li><a href="" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="copyright">
<a href="https://instagram.com/g.k.1.6" target="_blank">Copyright © 2022 yFone. All rights
reserved.</a>
</div>
<!-- move top -->
<button onclick="topFunction()" id="movetop" title="Go to top">
<img src="./assets/icons/up-arrow.png" alt="">
</button>
<script>
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function () {
scrollFunction()
};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
document.getElementById("movetop").style.display = "block";
} else {
document.getElementById("movetop").style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
<!-- /move top -->
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="./assets/js/main.js"></script>
<script>
document.querySelector('.account-open').addEventListener('click', () => {
document.querySelector('.account-menu').style.display = 'block';
})
</script>
</body>
</html>