-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.html
87 lines (67 loc) · 2.12 KB
/
product.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
<!DOCTYPE html>
<!-- saved from url=(0049) -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>UI Design</title>
<!-- Description, Keywords and Author -->
<meta name="description" content="Your description">
<meta name="keywords" content="Your,Keywords">
<meta name="author" content="ResponsiveWebInc">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Styles -->
<!-- Bootstrap CSS -->
<link href="./product_files/bootstrap.min.css" rel="stylesheet">
<!-- Font awesome CSS -->
<link href="css/font-awesome.min.css" rel="stylesheet">
<!-- Main CSS -->
<link href="css/style-63.css" rel="stylesheet">
<!-- Favicon -->
<link rel="shortcut icon" href="#">
</head>
<body>
<!-- UI X -->
<div class="ui-63">
<!-- Trigger button -->
<div class="text-center">
<a href="#" class="ui-trigger btn btn-lg btn-red">Menu</a>
</div>
<!-- Outer -->
<div class="ui-outer bg-red" style="display: block; opacity: 0.157726;">
<a href="#" class="ui-close">x</a>
<!-- Content -->
<div class="ui-content">
<!-- Menu -->
<div class="menu">
<a href="#">Home</a>
<a href="#">About Us</a>
<a href="#">Gallery</a>
<a href="#">Service</a>
<a href="#">Contact Us</a>
</div>
</div>
</div>
</div>
<!-- Javascript files -->
<!-- jQuery -->
<script src="./product_files/jquery.js"></script>
<!-- Bootstrap JS -->
<script src="./product_files/bootstrap.min.js"></script>
<!-- Placeholder JS -->
<script src="./product_files/placeholder.js"></script>
<!-- Respond JS for IE8 -->
<script src="./product_files/respond.min.js"></script>
<!-- HTML5 Support for IE -->
<script src="./product_files/html5shiv.js"></script>
<script>
$(document).ready(function(){
$("a.ui-trigger").click(function(e){
e.preventDefault();
$(".ui-outer").fadeIn(400);
});
$("a.ui-close").click(function(e){
e.preventDefault();
$(".ui-outer").fadeOut(400);
});
});
</script>
</body></html>