forked from steveinc911/MAD-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvolunteer_work.html
146 lines (133 loc) · 5.19 KB
/
volunteer_work.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet/less" type="text/css" href="css/page.less">
<link rel="stylesheet/less" type="text/css" href="css/bootstrap-datepicker.css">
<script type="text/javascript">
less = { env: 'development' };
</script>
<script src="js/less.min.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row header">
<div class="logo-container">
<a href="index.html" class="logo">
<i class="logo-image"></i>
<b><i class="kern1">Making a</i><br/>Difference</b>
</a>
</div>
<div class="header-right pull-right col-md-3 col-sm-3">
<div class="social-links">
<a href="#" class="facebook"><b>Facebook</b></a>
<a href="#" class="twitter"><b>Twitter</b></a>
<a href="#" class="gplus"><b>Google+</b></a>
</div>
</div>
<button class="btn" id="menu-button">
</button>
</div>
<nav class="row navbar main-nav">
<ul class="nav navbar-nav">
<li><a href="#">Home</a></li>
<li><a href="#">Volunteer work</a></li>
<li><a href="#">Recreation</a></li>
<li><a href="#">Whats included</a></li>
<li><a href="#">Contact us</a></li>
</ul>
</nav>
<div class="row content">
<div class="slideshow-container volunteer-form">
<ul>
<li>
<img class="img-responsive" src="./images/volunteer_bg.jpg" />
<div class="img-caption">
<form action="" class="form-horizontal">
<div class="input-group">
<input type="text" class="form-control input" style="width:300px;" placeholder="Your name" />
<span class="input-group-btn" style="width:0px;"></span>
<input type="text" class="form-control input datepicker" placeholder="Check-in" style="margin-left:-1px" />
<span class="input-group-btn" style="width:0px;"></span>
<input type="text" class="form-control input datepicker" placeholder="Check-out" style="margin-left:-2px" />
</div>
<button class="btn btn-success">
Volunteer
</button>
</form>
</div>
</li>
</ul>
</div>
<div class="container block">
<h2>Schedule</h2>
<div class="center-block">
<ul class="task-list">
<li>
<div class="icon-container">
<span class="breakfast_icon">
</span>
</div>
<b>Breakfast</b>
</li>
<li>
<div class="icon-container">
<span class="volunteer_icon">
</span>
</div>
<b>Volunteer</b>
</li>
<li>
<div class="icon-container">
<span class="lunch_icon">
</span>
</div>
<b>Lunch</b>
</li>
<li>
<div class="icon-container">
<span class="volunteer_icon">
</span>
</div>
<b>Volunteer</b>
</li>
<li>
<div class="icon-container">
<span class="eod_icon">
</span>
</div>
<b>Day complete</b>
</li>
</ul>
</div>
</div>
</div>
<div class="row footer">
<div class="sitemap">
<div class="footer-logo">
<p>234/5, Colva Beach </br> Colva Salcete </br> Goa - 403717 </br> <a>contact us</a></p>
</div>
<ul>
<li>VOLUNTEER WORK</li>
<li>RECREATION</li>
<li>WHATS INCLUDED</li>
<li>CONTACT US</li>
<li>PRIVACY POLICY</li>
<li>TERMS AND CONDITION</li>
<li><button class="btn">VOLUNTEER</button></li>
</ul>
</div>
<div id="copyright" class="container"><b>Copyright © 2015 Making a difference.</b><b>All rights reserved.</b></div>
</div>
</div>
<script src="js/jquery.js"></script>
<script src="js/moment.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/bootstrap-datepicker.min.js"></script>
<script src="js/general.js"></script>
</body>
</html>