-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchicken_sandwich.html
94 lines (91 loc) · 3.23 KB
/
chicken_sandwich.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset= "UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chicken_Sandwich</title>
<style>
body {
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
color: rgb(236, 233, 26);
background-color: rgb(46, 91, 240);
padding: 20;
margin: 30;
}
.border {
margin-bottom: 20px;
border-width:thick;
border-style: solid;
border-color: rgb(255, 255, 255);
}
.pad {
padding-top: 40px;
padding-right: 60px;
padding-bottom: 40px;
padding-left: 60px;
color: aqua;
}
.margin {
margin-top: 40px;
margin-right: 60px;
margin-bottom: 40px;
margin-left: 50px;
}
.big_border {
background-color: rgb(79, 233, 65);
width: 300px;
border: 15px solid rgb(23, 185, 235);
padding: 50px;
margin: 20px;
}
.button {
background-color: #04AA6D;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.dark-mode {
background-color: #333;
color: #fff;
}
</style>
<script>
function changeBackgroundColor() {
const colors = ['#ff9999', '#99ff99', '#9999ff', '#ffff99'];
const randomColor = colors[Math.floor(Math.random() * colors.length)];
document.body.style.backgroundColor = randomColor;
}
function toggleDarkMode() {
document.body.classList.toggle('dark-mode');
}
</script>
</head>
<body>
<button onclick="changeBackgroundColor()">Change Background Color</button>
<button onclick="toggleDarkMode()">Toggle Dark Mode</button>
<h1>This page is dedicated to why I love Popeyes chicken sandwhiches</h1>
<p>Popeyes chicken sandwiches are somewhat of a delicacy to me.</p>
<img src="/man_eating_popeyes.jpg" alt="Web Image" width="500" height="300">
<figcaption>(average popeyes chicken sandwich enjoyer)</figcaption>
<h2>I'm a huge fan of chicken sandwiches because of many different things</h2>
<p class="border">Popeyes chicken sandwhiches have a delightful, texture, flavor, and dazzling ingredients.</p>
<h3>Here are some more reasons I love Popeyes chicken sandwiches</h3>
<ol class="pad">
<li>Because, what's not to love about Popeyes chicken sandwhiches?</li>
<li>They are awesome.</li>
<li>They quench my hunger nicely.</li>
</ol>
<h4>Here are some other websites you should check out!</h4>
<ul class="margin big_border">
<li><a href="https://www.rainforestcafe.com">Rainforestcafe</a></li>
<li><a href="https://www.nytimes.com/games/wordle/index.html">Wordle</a></li>
<li><a href="https://education.nationalgeographic.org/resource/feng-shui/">feng-shui</a></li>
</ul>
</body>
</html>