-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
73 lines (52 loc) · 1.63 KB
/
index.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
<?php include'functions.php' ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sippers</title>
<link rel="stylesheet" href="Styles/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css" />
<style>
.main-nav li a{
color: black;
}
</style>
</head>
<body>
<div class="top">
<h3>Order Now to get SPECIAL😍DISCOUNT..... HURRY UP!!!</h3>
</div>
<header>
<div class="row">
<div class="logo">
<img src="images/Logo.png " height="150px" width="200px">
</div>
<ul class="main-nav">
<li><a href="index.php">Home</a></li>
<li><a href="Alcoholic.php">Alcoholic</a></li>
<li><a href="Non-alcoholic.php">Non-Alcoholic</a></li>
<?php
if(isset($_SESSION['username'])){?>
<li><a href="logout.php">Logout </a></li>
<?php }else{ ?>
<li><a href="login.php">Login </a></li>
<li><a href="register.php">Register </a></li>
<?php } ?>
<li><a href="mycart.php">My Cart </a></li>
<li><a href="Contact.php">Contact us </a></li>
</ul>
</div>
<div class="Text">
<p>It’s like a party for.... <br>my taste buds.</p>
</div>
<div class="button">
<a href="Alcoholic.html" class="btn btn-one">ALCOHOLIC</a>
<a href="Non-alcoholic.html" class="btn btn-two">NON-ALCOHOLIC</a>
</div>
</header>
</body>
</html>