-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (48 loc) · 1.57 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
<!DOCTYPE html>
<html ng-app="training">
<head>
<title></title>
<meta charset="utf-8">
<link rel="stylesheet" href="bootstrap/css/bootstrap.css"/>
<link rel="stylesheet" href="font-awesome/css/font-awesome.css"/>
<link rel="stylesheet" href="css/style.css"/>
<script type="text/javascript" src="js/external/jquery.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" src="js/external/angular_1.2-rc2.js"></script>
<script type="text/javascript" src="js/directives.js"></script>
</head>
<body>
<mm-accordion id="akordeon" only-one>
<mm-accordion-element title="raz" element-id="raz">
Raz 1
</mm-accordion-element>
<mm-accordion-element title="dwa">
Dwa 2
</mm-accordion-element>
<mm-accordion-element>
<mm-accordion-header>
<span style="color:red">Red Red</span> Wine
</mm-accordion-header>
<mm-accordion-body>
Stay close to me..
</mm-accordion-body>
</mm-accordion-element>
</mm-accordion>
<mm-accordion id="akordeon2">
<mm-accordion-element title="raz" element-id="raz">
Raz 1
</mm-accordion-element>
<mm-accordion-element title="dwa" element-id="dwa">
Dwa 2
</mm-accordion-element>
<mm-accordion-element>
<mm-accordion-header>
<span style="color:red">Red Red</span> Wine
</mm-accordion-header>
<mm-accordion-body>
Stay close to me..
</mm-accordion-body>
</mm-accordion-element>
</mm-accordion>
</body>
</html>