-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
99 lines (87 loc) · 3.59 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta http-equiv="content-type" content="text/html;" />
<meta name="robots" content="index,follow" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" user-scalabel="no">
<title> Multi-Level collapsible tree menu with CSS | Tech Stream</title>
<meta name="description" content="Multi-Level Expandable/Collapsible tree structured menu using CSS "/>
<!-- Open Graph -->
<meta property="og:title" content="Multi-Level collapsible tree menu with CSS" />
<meta property="og:image" content="http://techstream.org/images/img/--Image--" />
<meta property="og:site_name" content="Tech Stream" />
<meta property="og:description" content="Multi-Level Expandable/Collapsible tree structured menu using CSS "/>
<meta property="og:type" content="article">
<!-- Twitter -->
<meta name="twitter:title" content="Multi-Level collapsible tree menu with CSS" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:image" content="http://techstream.org/images/img/--Image--" />
<meta name="twitter:site" content="@techstream_org" />
<meta name="twitter:creator" content="@techstream_org" />
<meta name="twitter:domain" content="techstream.org" />
<meta name="twitter:description" content="Multi-Level Expandable/Collapsible tree structured menu using CSS "/>
<link rel="publisher" href="https://plus.google.com/109470966265063246951">
<link rel="stylesheet" type="text/css" href="css/foundation.min.css" media="all">
<link rel="stylesheet" type="text/css" href="css/style.css" media="all">
<link rel="stylesheet" type="text/css" href="css/demo.css" media="all">
<link href='https://fonts.googleapis.com/css?family=Merriweather+Sans:400,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Merriweather:400,700' rel='stylesheet' type='text/css'>
<script src="js/script.js"></script>
</head>
<body>
<div id="container">
<section id="header">
<div class="row">
<div class="column medium-4 small-12">
<div class="row">
<div class="column small-4 medium-3 large-2 small-centered medium-uncentered logo">
<a href="<?=PUBLICPATH?>"></a>
</div>
</div>
</div>
<div class="column medium-2 small-12">
<div class="row">
<div class="column small-4 medium-3 large-12 small-centered medium-uncentered nospace push-2-top ">
<a href="http://techstream.org/Web-Design/Multi-Level-collapsible-menu-with-CSS" class="button"> Back to Demo</a>
</div>
</div>
</div>
</div>
</section>
<script async type="text/javascript" src="http://cdn.carbonads.com/carbon.js?zoneid=1673&serve=C6AILKT&placement=techstreamorg" id="_carbonads_js"></script>
<section id="content">
<div class="row">
<div class="small-10 small-centered push-4-top column">
<h1 class="text-center"> Multi-Level collapsible tree menu with CSS </h1>
<p>Lists width Anchor tags to the Root elements</p>
<ol class="tree-list">
<li>
Level 0 : Item 1 <label for="l1"></label><input id="l1" name="iddd" type="checkbox">
<ul>
<li>
Level 1 : Item 1 <label for="l1i1"></label><input id="l1i1" type="checkbox">
<ul>
<li>Level 2 : Item 1</li>
<li>Level 2 : Item 2</li>
</ul>
</li>
<li>Level 1 : Item 2</li>
</ul>
</li>
<li>
Level 0 : Item 2
</li>
<li>
Level 0 : Item 3
</li>
</ol>
</div>
</div>
</section>
<section id="footer">
</section>
</div>
</body>
</html>