-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsad.html
More file actions
59 lines (46 loc) · 1.88 KB
/
sad.html
File metadata and controls
59 lines (46 loc) · 1.88 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Mood Meals | Sad </title>
<link rel="stylesheet" type="text/css" href="moodstyles.css"/>
</head>
<body>
<header class="header">
<h1>when you're feeling sad...</h1>
<p>It's okay to comfort yourself - here are some meals to lift your spirits.</p>
</header>
<section class="intro">
<p>Choose one of these cozy meals and maybe, just maybe, you'll feel a lil' brighter.</p>
</section>
<section class="meals">
<div class="meal-card">
<img src="images/comfortsoup.png" alt="Comfort Soup"/>
<div class="meal-info">
<h3>Warm Comfort Soup</h3>
<p>A hearty soup to soothe your soul.</p>
</div>
</div>
<div class="meal-card">
<img src="images/chocolatebrownie.png" alt="Chocolate Brownies"/>
<div class="meal-info">
<h3>Chocolate Brownie Delight</h3>
<p>Sometimes a sweet treat is exactly what you need.</p>
</div>
</div>
<div class="meal-card">
<img src="images/roastchickenwveg.png" alt="Roast Chicken with Veggies"/>
<div class="meal-info">
<h3>Roast Chicken & Veggies</h3>
<p>A warm, fulfilling dish to ease your mind.</p>
</div>
</div>
</section>
<div class="center">
<a href="index.html" class="button">Back to Mood Selector</a>
</div>
<canvas id="snowfall"></canvas>
<script src="script.js"></script>
</body>
</html>