-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHeader.html
98 lines (85 loc) · 3.29 KB
/
Header.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Smart Portables</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
<!-- Links for Jquery and bootstrap css -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script>
// <!-- jqurey script -->
$(document).ready(function(){
$('#myCarousel').carousel({
interval: 3000
})
$('.carousel .item').each(function(){
var next = $(this).next();
if (!next.length) {
next = $(this).siblings(':first');
}
next.children(':first-child').clone().appendTo($(this));
});
});
</script>
<style>
* {
box-sizing : unset;
}
.col-md-6{
width : 45% ! important;
}
</style>
</head>
<body style='margin: 0px !important; padding: 0 !important; background: #6A5ACD !important; font-family: Georgia, "Times New Roman", Times, serif; font-size: 12px !important; '>
<!-- <script type="text/javascript" src="autocomplete.js"></script> -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tarekraafat/[email protected]/dist/css/autoComplete.min.css">
<!-- Start #logo top content of the webpage-->
<div id="logo">
<table style="float: left">
<tr>
<td style="valign: top;"><img src="images/site/GameON.jpg" alt=""
style="height: 80px" /></td>
<td><h1>
<a href="#">Smart Portables</a>
</h1></td>
</tr>
<tr>
<td></td>
<td><p>
<em>World's Largest Online Smart Center</em>
</p></td>
</tr>
</table>
<div
style="float: right; width: 30%; margin-top: 35px; border: 1px solid white; padding: 5px; padding-right: 15px">
<em style="color: white;">Search Product:</em>
<div name="autofillform">
<input type="text" name="complete-field" value="" class="input"
id="complete-field" onkeyup="doCompletion()" autocomplete="off"
placeholder="search here.." style="padding: 5px; font-size: 16px;" />
<div id="auto-row">
<table id="complete-table" class="gridtable"
style="position: absolute; width: 315px;"></table>
</div>
</div>
</div>
</div>
<hr />
<!-- end #logo -->
<!-- start #header -->
<!-- menu in header area the header div ends in utility file where header content right side link gets populated with login id cart and logout option -->
<div id="header">
<div id="menu">
<ul>
<li><a href="Home" class="first"><span class="glyphicon glyphicon-home">Home</span></a></li>
<li><a href="WearableTechnologyList"><span class="glyphicon">Wearable Technology</span></a></li>
<li><a href="PhonesList"><span class="glyphicon">Phones</span></a></li>
<li><a href="LaptopList"><span class="glyphicon">Laptops</span></a></li>
<li><a href="Trending"><span class="glyphicon">Trending </span></a></li>
</ul>
</div>
<!-- end #menu -->