-
Notifications
You must be signed in to change notification settings - Fork 85
/
Lab09.php
executable file
·97 lines (61 loc) · 2.87 KB
/
Lab09.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
86
87
88
89
90
91
92
93
94
95
96
97
<?php
include 'travel-data.inc.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Chapter 12</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/bootstrap-theme.css" />
<link rel="stylesheet" href="css/captions.css" />
</head>
<body>
<?php include 'header.inc.php'; ?>
<!-- Page Content -->
<main class="container">
<div class="btn-group countryButtons" role="group" aria-label="...">
<a role="button" class="btn btn-default" href="list.php">All</a>
<?php
/* you will need to fill this place with appropriate PHP */
/* hint: use array and loop */
//the next line is an example
//<a href="list.php?country=Canada" role="button" class="btn btn-default"> Canada</a>
?>
</div>
<ul class="caption-style-2">
<?php
/* you will need to fill this place with appropriate PHP */
/* hint: use array and loop */
//the next lines are one of the elements
//you need to fill the elements with data provided
// <li>
// <a href="detail.php?id=22" class="img-responsive">
// <img src="images/square/6114850721.jpg" alt="View of Cologne">
// <div class="caption">
// <div class="blur">
// </div>
// <div class="caption-text">
// <h1>View of Cologne</h1>
// </div>
// </div>
// </a>
// </li>
?>
</ul>
</main>
<footer>
<div class="container-fluid">
<div class="row final">
<p>Copyright © 2017 Creative Commons ShareAlike</p>
<p><a href="#">Home</a> / <a href="#">About</a> / <a href="#">Contact</a> / <a href="#">Browse</a></p>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</body>
</html>