-
Notifications
You must be signed in to change notification settings - Fork 0
/
promotions.html
101 lines (86 loc) · 5.45 KB
/
promotions.html
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
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="Mia Li">
<meta name="keywords" content="Carnegie Mellon University, Information Systems">
<meta name="description" content="Mia Li professional website">
<title>Promotions Page</title>
<link rel="stylesheet" media="all" type="text/css" href="css/jquery-ui.css">
<link rel="stylesheet" media="all" type="text/css" href="css/styles.css">
<script src="js/jquery-3.6.4.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/scripts.js" > </script>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css" integrity="sha512-tS3S5qG0BlhnQROyJXvNjeEM4UpMXHrQfTGmbQ1gKmelCxlSEBUaxhRBj/EFTzpbP4RVSrpEikbmdJobCvhE3g==" crossorigin="anonymous" referrerpolicy="no-referrer" >
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css" integrity="sha512-sMXtMNL1zRzolHYKEujM2AqCLUR9F2C4/05cdbxjjLSRvMQIciEPCQZo++nk7go3BtSuK9kfa/s+a4f4i5pLkw==" crossorigin="anonymous" referrerpolicy="no-referrer" >
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.4/jquery.min.js" integrity="sha512-pumBsjNRGGqkPzKHndZMaAG+bir374sORyzM3uulLV14lN5LyykqNk8eEeUlUkB3U0M4FApyaHraT65ihJhDpQ==" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js" integrity="sha512-bPs7Ae6pVvhOSiIcyUClR7/q2OAsRiovw4vAkX+zJbw3ShAeeqezq50RIIcIURq7Oa20rW2n2q+fyXBNcU9lrw==" crossorigin="anonymous"></script>
<script src='https://cdn.jsdelivr.net/npm/[email protected]/index.global.min.js'></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
var calendarEl = document.getElementById('calendar');
var calendar = new FullCalendar.Calendar(calendarEl, {
initialView: 'dayGridWeek'
});
calendar.render();
});
</script>
</head>
<body>
<div id="container">
<div id="toprow">
<h1>
<a href="index.html"> <img src="images/logo.jpg" width=70 height=70 alt="logo"></a>
<input type="button" onclick="window.location.href='menu.html';" class="btn btn-warning btn-lg" value="Menu">
<input type="button" onclick="window.location.href='locations.html';" class="btn btn-warning btn-lg" value="Locations & Hours">
<input type="button" onclick="window.location.href='promotions.html';" class="btn btn-warning btn-lg" value="Promotions">
<input type="button" onclick="window.location.href='about-us.html';" class="btn btn-warning btn-lg" value="About Us">
<input type="button" onclick="window.location.href='contact-us.html';" class="btn btn-warning btn-lg" value="Contact Us">
<a href="mailto:[email protected]"><img src="images/email.jpg" width="52" height="40" alt="mail Icon"></a>
<a href="https://www.instagram.com/happydaydessertfactory/?igshid=YmMyMTA2M2Y%3D"><img src="images/instagram.jpg" width="52" height="40" alt="instagram Icon"></a>
<a href="https://www.facebook.com/happydaydessertfactory?mibextid=LQQJ4d"><img src="images/facebook.png" width="46" height="40" alt="facebook Icon"></a>
<a href="https://pittsburghmagazine.com/happy-day-dessert-factory-brings-frozen-delights-to-the-north-side/"><img src="images/article.jpg" width="45" height="45" alt="phone Icon"></a>
</h1>
</div>
<!-- slideshow -->
<div class="owl-carousel owl-theme">
<div class="item"><h4>Monday<br>20% off of ice cream!<img src="images/img30.jpg" alt="promotion1"></h4></div>
<div class="item"><h4>Tuesday<br>Buy 3 scoops, Get 1 free!<img src="images/img31.jpg" alt="promotion2"></h4></div>
<div class="item"><h4>Wednesday<br>10% off of ice cream!<img src="images/img32.jpg" alt="promotion3"></h4></div>
<div class="item"><h4>Thursday<br>Buy 2 pints, Get 1 50% off!<img src="images/img33.jpg" alt="promotion4"></h4></div>
<div class="item"><h4>Friday<br>15% off of ice cream!<img src="images/img34.jpg" alt="promotion5"></h4></div>
<div class="item"><h4>Saturday<br>Buy 5 scoops, Get 2 free!<img src="images/img35.jpg" alt="promotion6"></h4></div>
<div class="item"><h4>Sunday<br>20% off of ice cream!<img src="images/img36.jpg" alt="promotion7"></h4></div>
</div>
<!-- import owl carousel -->
<script>
$('.owl-carousel').owlCarousel({
loop:true,
margin:10,
nav:true,
responsive:{
0:{
items:1
},
600:{
items:3
},
1000:{
items:5
}
}
})
</script>
<footer>
<hr>
© Happy Day Dessert Factory 2023<br>
</footer>
</div>
</body>
</html>