forked from IqbalFirmans/online_shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
48 lines (37 loc) · 1.38 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Online Store</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="container">
<div class="masthead clearfix">
<div class="container inner">
<h3 class="masthead-brand">Online Shop</h3>
<nav>
<ul class="nav masthead-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="store/index.php">Store</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
</div>
<div class="inner cover">
<h1 class="cover-heading">Online Shop.</h1>
<p class="lead">Responsive store website. Featuring a multi-role login system, intuitive shopping, and a streamlined checkout process, this project showcases a complete online shopping experience. Developed with HTML, CSS, JavaScript, PHP, and MySQLi.</p>
<p class="lead">
<a href="store/index.php" class="btn btn-lg btn-default">Go Store</a>
</p>
</div>
</div>
</div>
</div>
</body>
</html>