-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex1.html
More file actions
104 lines (103 loc) · 3.42 KB
/
index1.html
File metadata and controls
104 lines (103 loc) · 3.42 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Joseph's Github Pages</title>
<!--<style type="text/css">
html, body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
.main {
width: 100%;
height: 100%;
overflow: hidden;
position: relative;
}
.left {
position: absolute;
left: 0;
width: 400px;
bottom: 0;
top: 0;
border-right: 1px solid #9a9a9a;
background: #ccc;
overflow-y: auto;
overflow-x: hidden;
}
.left div {
padding: 10px;
}
.right {
position: absolute;
left: 401px;
right: 0;
bottom: 0;
top: 0;
height: 100%;
float: right;
}
.right div {
padding: 10px;
}
.right header {
background: #4285f4;
padding: 10px;
height: 10px;
width: 100%;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
ol.menu li {
padding: 10px;
}
ol.menu li a {
text-decoration: none;
}
</style>-->
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.css">
</head>
<body>
<div class="container-fluid">
<div class="row-fluid">
<div class="span4">
<div>
<ol class="menu">
<li>
<a href="mediator_pattern_with_backbone_example/">Backbone Example with Mediator Pattern</a>
</li>
<li>
<a href="fluidic_sliding_panel/">Fluidic Sliding Panels</a>
</li>
<li>
<a href="html5_preloader/">HTML5 Preloader</a>
</li>
<li>
<a href="swipe_gesture_common/">Swipe Gesture - common for desktops and mobile browsers</a>
</li>
<li>
<a href="html5_svgmap/">HTML5 SVG Choropleth Map Example</a>
</li>
<li>
<a href="html5_geolocation/">Simple HTML5 Geolocation Demo</a>
</li>
<li>
<a href="growing_pie/">Growing Pie Chart Animation with Raphael JS</a>
</li>
</ol>
</div>
</div>
<div class="span8 text-center">
<div>
<h1>Welcome to my Github Pages</h1>
<a href="http://www.twitter.com/adsflo_joseph" target="_blank">Contact me on Twitter</a>
</div>
</div>
</div>
</div>
</body>
</html>