-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
74 lines (59 loc) · 2.82 KB
/
home.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8" />
<title>nativeDroid - Theme for jQuery Mobile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- FontAwesome - http://fortawesome.github.io/Font-Awesome/ -->
<link rel="stylesheet" href="css/font-awesome.min.css" />
<!-- jQueryMobileCSS - original without styling -->
<link rel="stylesheet" href="css/jquerymobile.css" />
<!-- nativeDroid core CSS -->
<link rel="stylesheet" href="css/jquerymobile.nativedroid.css" />
<!-- nativeDroid: Light/Dark -->
<link rel="stylesheet" href="css/jquerymobile.nativedroid.light.css" id='jQMnDTheme' />
<!-- nativeDroid: Color Schemes -->
<link rel="stylesheet" href="css/jquerymobile.nativedroid.color.blue.css" id='jQMnDColor' />
<!-- jQuery / jQueryMobile Scripts -->
<script src="js/jquery-1.9.1.min.js"></script>
<script src="js/jquery.mobile-1.3.1.min.js"></script>
</head>
<body>
<div data-role="page" data-theme='b'>
<div data-role="header" data-position="fixed" data-tap-toggle="false" data-theme='b'>
<a href="menu.html" data-ajax="false"><i class='icon-reorder'></i></a>
<img src="images/banner_logo.jpg" />
</div>
<div data-role="content">
<div class='inset'>
<img src="images/gallery_front.jpg" style="width:100%;margin-top:10px;" >
<h1>Thiriwinmon Gallery</h1>
<p> “Thiriwaimon” gallery was established in 2005, displaying only the genuine paintings of Myanmar famous artists. <br /><a href="about.html">Read About Us</a></p>
<h1>Activities</h1>
<h2>Longevity Art Exhibition</h2>
<p>
The word “longevity” is sometimes meant to refer only to especially long lived members of a population. Art might be secret of “longevity” for these artists.
<b>Duration</b>:<br />
14 December - 21 December<br />
<b>Opening Ceremony</b>:<br />
9:30 am<br />
14 December 2013<br />
<b>Daily Show Time</b>:<br />
9:30 am to 5:00 pm <br />
<a href="activities.html">Read Activities</a></p>
</div>
</div>
<div data-position="fixed" data-tap-toggle="false" data-role="footer" data-tap-toggle="false" data-theme='b'>
<div data-role="navbar">
<ul>
<li ><a href="about.html" data-ajax="false" data-icon="reorder"> About us</a></li>
<li><a href="our_gallery.html" data-ajax="false" data-icon="picture"> Our Gallery</a></li>
<li><a href="activities.html" data-ajax="false"data-icon="magic"> Activities</a></li>
<li><a href="contact_us.html" data-ajax="false" data-icon="phone"> Contact Us</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>