-
Notifications
You must be signed in to change notification settings - Fork 113
/
advisors.php
37 lines (36 loc) · 1.12 KB
/
advisors.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
<?php require("dbconnect.php"); ?>
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>The Advice Shop - Home</title>
<link href="styles/mainstyles.css" rel="stylesheet" type="text/css" media="screen">
</head>
<body>
<?php include("inc_header.php"); ?>
<?php include("inc_nav.php"); ?>
<h2>Advisors</h2>
<div id="content">
<p>You want only the very best advice, so we have only the best advisors...</p>
</div>
<p> </p>
<section id="features" class="clearfix">
<div id="first">
<h2>Gandhi</h2>
<img class="img-circle" src="images/Gandhi_250.jpg" height="250" alt="Gandhi">
<blockquote>Many sage words...</blockquote>
</div>
<div id="second">
<h2>Dalai Lama</h2>
<img class="img-circle" src="images/Dalai_250.jpg" height="250" alt="Dalai Lama">
<blockquote>Seek the happiness...</blockquote>
</div>
<div id="third">
<h2>Vanilla Ice</h2>
<img class="img-circle" src="images/VanillaIce_250.jpg" height="250" alt="Vanilla Ice">
<blockquote>Stop. Collaborate and listen.</blockquote>
</div>
</section>
<?php include("inc_footer.php"); ?>
</body>
</html>