blob: 20b893e923002276c95d95c051a9f6bffa6366c3 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="Vegan Recipes">
<meta name="keywords" content="vegan, recipes, baking, cooking, animal rights">
<meta name="author" content="Scott Jones">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pantry of Plants</title>
<link rel="stylesheet" href="style/style.css">
<script src="scripts/image-slide.js" defer></script>
</head>
<body>
<header>
<nav>
<a href="index.html"><img src="images/pantry-of-plants-logo.png" class="logo"></a>
<div class="nav-text-outer">
<a href="recipes.html" class="nav-text">Recipes</a>
<a href="about.html" class="nav-text">About</a>
</div>
</nav>
</header>
<div class="content">
<!-- Slideshow container -->
<div class="slideshow-container">
<!-- Full-width images with rounded edges -->
<div class="slides">
<img src="images/recipe-images/bread-3.JPG" style="width:100%; border-radius:20px;" />
</div>
<div class="slides">
<img src="images/recipe-images/banana-muffin.JPG" style="width:100%; border-radius:20px;" />
</div>
<div class="slides">
<img src="images/recipe-images/pizza.JPG" style="width:100%; border-radius:20px;" />
</div>
</div>
<!-- The dots/circles -->
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
<div class="home-links">
<a class="button" id="explore" href="recipes.html">
<p>Explore Recipes</p>
</a>
<a class="button" id="contact" href="mailto:scott@pantryofplants.ca">
<p>Contact <img src="images/mail.svg" class="mail-1" /></p>
</a>
</div>
</div>
<footer>
<a href="mailto:scott@pantryofplants.ca" class="mail">Contact: scott@pantryofplants.ca <img src="images/mail.svg" class="mail-2"></a>
<p>© 2021 Pantry of Plants</p>
</footer>
</body>
</html>
|