-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
119 lines (83 loc) · 3.34 KB
/
test.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
<!doctype html>
<?php
include("functions/functions.php");
?>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dabang Mall</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.7.9/angular.min.js"></script>
<script src="js/home_page.js"></script>
<!-- angular js -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="styles/style.css" media="all" \>
<!-- style sheet -->
<
</head>
<body ng-app="mod">
<!-- Main container start here -->
<div class="main_wrapper">
<!-- Header start here -->
<div class="header_wrapper" ng-controller="ctr">
<img ng-src="images/dabang 2.jpg" alt="logo " id="logo" width="200px" height="100px" />
<img src="images/banner.gif" alt="banner" id="banner" height="100px" width="800px" />
</div>
<!-- header end here -->
<!-- menue bar star here -->
<div class="menuebar">
<ul id="menue" style="list-style:none;">
<li class=" nav-item"><a href="#">Home</a></li>
<li class=" nav-item"><a href="">All product</a></li>
<li class=" nav-item"><a href="">My Account</a></li>
<li class=" nav-item"><a href="">Sign up</a></li>
<li class=" nav-item"><a href="">shopping Cart</a></li>
<li class=" nav-item"><a href="">Contact Us</a></li>
</ul>
<div id="form" class="">
<form action="results.php" method="get" enctype="multipart/form-data">
<input type="text" name="user_query" />
<input type="submit" name="search" id="" class="btn btn-dark" value="Search">
</form>
</div>
</div>
<!--
menuebar ends here
-->
<!-- main contnet area start here -->
<div class=" content_wrapper">
<!-- sider bar start hare -->
<div id="sidebar">
<div id="sidebar_title">
Categories
</div>
<ul id="cats">
<?php
getcats();
?>
</ul>
<div id="sidebar_title">
Brands
</div>
<ul id="cats">
<?php
getbrand();
?>
</ul>
</div>
<!-- sidebar end here -->
<!-- content area start here -->
<div id="content_area">this is content area
</div>
</div>
<!-- content area end here -->
<!-- footer start -->
<div id="footer">
</div>
<!-- footer end here -->
</div>
</div>
<!-- main content area end here -->
</body>
</html>