-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcheckout.php
93 lines (88 loc) · 3.29 KB
/
checkout.php
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
<?php session_start();?>
<!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>Checkout | Grocery Store</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
</head>
<body class="grid">
<!-- Header -->
<header class="header" id="header">
<nav class="nav container">
<a href="index.php" class="nav__logo">Grocery Store</a>
<div class="nav__menu" id="nav-menu">
<?php
include("includes/menu.php");
?>
<i class="uil uil-times nav__close" id="nav-close"></i>
</div>
<div class="nav__btns">
<div class="nav__toggle" id="nav-toggle">
<i class="uil uil-bars"></i>
</div>
</div>
</nav>
</header>
<!-- Main -->
<main>
<section class="background">
<div class="section__background">
<h2>Keep Shopping</h2>
<h1>Thank You <span>So Much</span> </h1>
</div>
</section>
</main>
<footer class="footer">
<div class="footer__container grid">
<div class="footer__logo">
<h1 class="footer__title">Grocery Store</h1>
<span class="footer__subtitle">
Project by Shreyas, Rutuja & Sauhard.
</span>
</div>
<div class="footer__about">
<h1 class="footer__about-title">About</h1>
<ul class="footer__links">
<li>
<a href="" class="footer__link">About Us</a>
</li>
<li>
<a href="" class="footer__link">Contact</a>
</li>
<li>
<a href="" class="footer__link">Return Policy</a>
</li>
<li>
<a href="" class="footer__link">Privacy Policy</a>
</li>
</ul>
</div>
<div class="footer__socials">
<a href="https://github.com/" target="_blank" class="footer__social">
<i class="uil uil-github"></i>
</a>
<a href="https://www.linkedin.com/in//" target= "_black" class="footer__social">
<i class="uil uil-linkedin"></i>
</a>
<a href="https://www.instagram.com//" target= "_black" class="footer__social">
<i class="uil uil-instagram"></i>
</a>
<a href="https://twitter.com/" target= "_black" class="footer__social">
<i class="uil uil-twitter-alt"></i>
</a>
</div>
<p class="footer__copy">© Front End by Shreyas</p>
</div>
</footer>
<!-- Scroll Up -->
<a href="" class="scrollup" id="scroll-up">
<i class="uil uil-arrow-up scrollup__icon"></i>
</a>
<!-- Javascript -->
<script src="assets/js/main.js"></script>
</body>
</html>