-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
85 lines (62 loc) Β· 2.58 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link href="css/thiss.css" rel="stylesheet">
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Josefin+Slab:100,300,400,600,700,100italic,300italic,400italic,600italic,700italic" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet">
<style>
hr {
max-width: 400px;
border-color: #999999;
}
</style>
</head>
<body>
<?php require_once 'nav.php' ?>
<div class="container">
<div class="row text-center">
<div class="box">
<div class="col-lg-12">
<hr>
<h3 class="font_simple" >About <strong>The Cafeteria</strong></h3>
<hr>
<div class='col-md-6' ><iframe src='https://www.youtube.com/embed/ooUAVHJAcyk' frameborder='0' allowfullscreen width="100%" height="300px"></iframe></div>
<p>The Perfect Cup launched in 2000, in the heart of California. Our mission is simple. We want to teach coffee drinkers all over the world how to make the perfect blend!
Our Coffee experts have a lifelong passion for coffee. They are internationally traveled and have experienced many varieties.</p>
</div></div></div></div>
<div class="container">
<div class="row text-center">
<div class="box">
<div class="col-lg-12">
<hr>
<h3 class="font_simple" >About <strong>Our Team</strong></h3>
<hr></div>
<div class="col-md-4 ">
<img class="img-responsive" src="img/abt1.jpg" alt="">
<h3>James Moore</h3>
</div>
<div class="col-md-4 ">
<img class="img-responsive" src="img/abt2.jpg" alt="">
<h3>Jane Brown</h3>
</div>
<div class="col-md-4">
<img class="img-responsive" src="img/abt3.jpg" alt="">
<h3>Anne Marie</h3>
</div>
</div></div></div>
<footer>
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<p>Copyright © The Cafeteria 2020</p>
</div></div></div>
</footer>
</body>
</html>