-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathourstaff.php
85 lines (81 loc) · 2.92 KB
/
ourstaff.php
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
<?php
require_once('includes/conn_mysql.inc.php');
$conn = dbConnect('query');
$q = "SELECT * FROM quotes";
$s = mysql_query($q, $conn);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" href="css/reset.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="css/master.css" type="text/css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="css/fontstyle.css" type="text/css" charset="utf-8">
<link rel="stylesheet" media="all" type="text/css" href="css/dropdown.css" />
<!--[if lte IE 6]>
<link rel="stylesheet" media="all" type="text/css" href="css/dropdown_ie.css" />
<![endif]-->
<style type="text/css" media="screen">
img.fpimage {
margin-right:10px;
margin-top:3px;
}
</style>
<title>Solutions Bridal - Staff</title>
<script src="scripts/jquery-1.4.2.min.js" type="text/javascript" charset="utf-8"></script>
<script src="scripts/jquery.cycle.lite.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('#bride_quote').cycle({
speed: 2000,
timeout: 5000,
cleartype: 1
});
})
</script>
</head>
<body>
<div id="wrapper">
<div id="main">
<img src="images/sbheaderlogo.jpg" />
<div id="bride_quote">
<?php while($a = mysql_fetch_assoc($s)) { ?>
<div>
<p class="pretty"><?php echo $a['q_body']; ?></p>
<p class="quote_person"><?php echo $a['q_sig']; ?></p>
</div>
<?php } ?>
</div>
<div class="menu">
<?php
include('includes/menu.php');
?>
</div>
<div id="infodiv" style="top:270px;">
<h1><img src="images/ourstaffh1.png" /></h1>
<p>
The Solutions Bridal stylists are extensively trained to provide the best knowledge on each gown, designer, and fashion trend.
A few of our stylist have even created their own clothing and accessory lines, which offers you expert in-house fashion advice.
We believe a gown is meant to be yours if it represents your personality. To create a look that is truly you, our team will
customize almost anything in store to make it one of a kind.
</p>
<p>
Not only will the stylist provide you with impeccable, award-winning service, they can help point you in the right direction by
recommending local vendors to complete your wedding day.
</p>
</div>
<div id="overlay">
</div>
<img class="fpimage" src="images/staff_winterpark.jpg" />
<img class="fpimage" src="images/staff_gainesville.jpg" />
</div>
</div>
<div id="adwrapper">
<?php include('includes/ads.php'); ?>
</div>
<div id="footer">
<?php include('includes/footer.inc.php'); ?>
</div>
</body>
</html>