-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 745 Bytes
/
index.html
File metadata and controls
28 lines (27 loc) · 745 Bytes
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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FlexString</title>
<link rel="stylesheet" href="css/flexstring.css" />
<link rel="stylesheet" href="css/demo.css" />
</head>
<body>
<div id="container">
<section class="one">1</section>
<section class="two">2</section>
<section class="three">3</section>
<section class="four">4</section>
<section class="five">5</section>
</div>
<script src="lib/jquery.min.js"></script>
<script src="lib/flexibility.js"></script>
<script src="lib/jquery.flexstring.min.js"></script>
<script>
$(document).ready(function() {
$("#container").flexString();
});
</script>
</body>
</html>