-
Notifications
You must be signed in to change notification settings - Fork 0
/
attractions.php
61 lines (48 loc) · 2.08 KB
/
attractions.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" name="viewport" content="width=device-width" initial-scale=1.0>
<title>Ithaca Apple Fest</title>
<link rel="stylesheet" href="css/site.css">
<link href="https://fonts.googleapis.com/css?family=Amatic+SC" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="js/change_logo.js"></script>
</head>
<body>
<?php
include 'includes/header.php';
?>
<div id= "attractioncontent">
<h5>Attractions</h5>
<div id="attractions">
<div class="attractionrow">
<img src="images/vendor.jpg" alt="Vendors">
<!--Image Credits: Edited by Rona Chang: https://flic.kr/p/pg3W9x-->
<!-- <img src="images/vendor2.jpg" alt="apple fest photos"> -->
<img src="images/candyapple.jpg" alt="Food">
<!-- Image Credits: Edited by Rona Chang: https://assets.dnainfo.com/photo/2016/9/1475171260-275192/larger.jpg-->
<img src="images/zoo.jpg" alt="Petting Zoo">
<!-- Image Credits: Edited by Rona Chang: https://flic.kr/p/pg4P7o-->
</div>
<div class ="attractionrow">
<img src="images/liveconcert.jpg" alt="Live Concert">
<!-- Image Credits: Edited by Rona Chang: http://www.ithaca.edu/depts/gallery_img/16036_full.jpg-->
<img src="images/localproduce.jpg" alt="Local Produce">
<!-- Image Credits: Edited by Rona Chang: http://visitmayberry.com/wp-content/uploads/2014/10/fall2.jpg-->
<img src="images/rides.jpg" alt="Ferris Wheel">
<!--Image Credits: Edited by Rona Chang: https://flic.kr/p/pg4iWm-->
</div>
</div>
<h3>Only Have 2 Hours? Must Sees:</h3>
<div id="mustsee">
<p>Hot Apple Cider Donuts,</p>
<p>Performance by IC Voicestream, Ithacapella,and Premium Band,</p>
<p>Local Farm Fresh baked pies,</p>
<p>Artist Community in Ithaca</p>
</div>
</div>
<?php
include 'includes/footer.php';
?>
</body>
</html>