-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
110 lines (97 loc) · 4.41 KB
/
index.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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>GRT Responsive Menu - jQuery Plugin</title>
<meta name="description" content="GRT Responsive Menu - Simple and lightweight fixed responsive menu for your website">
<meta name="author" content="grt107">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Demo CSS file not needed for the plugin -->
<link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet">
<link rel="stylesheet" href="css-demo-page.css">
<!-- GRT Youtube Plugin CSS -->
<link rel="stylesheet" href="grt-responsive-menu.css">
</head>
<body>
<header>
<div class="menu-container">
<div class="grt-menu-row">
<div class="grt-menu-logo">
<a href="#" class="grt-logo"><img src="logo1.jpg"></a>
</div>
<div class="grt-menu-right">
<nav>
<button class="grt-mobile-button"><span class="line1"></span><span class="line2"></span><span class="line3"></span></button>
<ul class="grt-menu">
<li class="active"><a href="">Home</a></li>
<li><a href="">About</a></li>
<li><a href="">Portfolio</a></li>
<li><a href="">Blog</a></li>
<li class="grt-dropdown"><a>dropdown</a>
<ul class="grt-dropdown-list">
<li><a href="">Menu 1</a></li>
<li><a href="">Menu 2</a></li>
<li><a href="">Menu 3</a></li>
</ul>
</li>
<li><a href="">contact</a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<div class="demo-page-container">
<!-- Github Button -->
<div class="github-position">
<a class="github-button" href="https://github.com/grt107/grt-responsive-menu/archive/master.zip" data-icon="octicon-cloud-download" data-size="large" aria-label="Download grt107/grt-responsive-menu on GitHub">Download</a>
<a class="github-button" href="https://github.com/grt107" data-size="large" aria-label="Follow @grt107 on GitHub">Follow @grt107</a>
</div>
<h3>GRT Fixed Responsive Menu - jQuery Plugin</h3>
<p>Simple and lightweight fixed responsive menu for your website.</p>
<h5>How to use the plugin in your website</h5>
<p>1- Include the plugin stylesheet file <strong>grt-responsive-menu.css</strong> inside the <strong><head></strong> tag</p>
<code><link rel="stylesheet" href="grt-responsive-menu.css"></code>
<p>2- Include the plugin javascript file <strong>grt-responsive-menu.js</strong> inside the <strong><body></strong> tag and after <strong>jquery.min.js</strong></p>
<code><script src="grt-responsive-menu.js"></script></code>
<p>3- Replace your <strong><header></strong> with code below:</p>
<code>
<header>
<div class="menu-container">
<div class="grt-menu-row">
<div class="grt-menu-logo">
<a href="#" class="grt-logo"><img src="logo1.jpg"></a>
</div>
<div class="grt-menu-right">
<nav>
<button class="grt-mobile-button"><span class="line1"></span><span class="line2"></span><span class="line3"></span></button>
<ul class="grt-menu">
<li class="active"><a href="">Home</a></li>
<li><a href="">About</a></li>
<li><a href="">Portfolio</a></li>
<li><a href="">Blog</a></li>
<li class="grt-dropdown"><a>dropdown</a>
<ul class="grt-dropdown-list">
<li><a href="">Menu 1</a></li>
<li><a href="">Menu 2</a></li>
<li><a href="">Menu 3</a></li>
</ul>
</li>
<li><a href="">contact</a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
</code>
</div>
<!-- Jquery -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<!-- Github button for demo page -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
<!-- GRT Youtube Popup -->
<script src="grt-responsive-menu.js"></script>
</body>
</html>