-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlant.html
77 lines (72 loc) · 3.56 KB
/
Plant.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous">
<link rel="stylesheet" href="./recipeStyle.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Plant based</title>
</head>
<body>
<div class="logohead">
<img src="secretrecipelogo.png" alt="logo" class="center">
</div>
<nav class="navbar navbar-expand-md bg-light navbar-light">
<!-- Brand -->
<a class="navbar-brand" href="ourRecipes.html">Our Recipes</a>
<!-- Toggler/collapsibe Button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navbar links -->
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="homepage.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contactus.html">Contact Us</a>
</li>
</ul>
</div>
</nav>
<h1 class="title">Plant-based</h1>
<table>
<tr>
<th><a href="./Salad.html">Cranberry and blueberry salad</a></th>
<th><a href="./Chickpea.html">Sweet and sour chickpeas</a></th>
</tr>
<tr>
<td> <img src="https://i.pinimg.com/564x/18/42/34/184234eb9d805608fea558f2e1a13006.jpg" alt=" bean salad" style="width:300px;height:300px;"> </td>
<td> <img src="https://peasandcrayons.com/wp-content/uploads/2019/10/sweet-and-sour-chickpeas-recipe-.jpg" alt="colourful bowl of chickpeas" style="width:300px;height:300px;"></td>
</tr>
<tr>
<td>Fresh and tangy salad, perfect for summer.</td>
<td>A vegan twist on this take-out classic, Sweet and Sour Chickpeas are speedy, saucy, and a little bit spicy!</td>
</tr>
</table>
</body>
<footer>
<div class="address">
<div>
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
</div>
<p>© Copyright The Secret Recipe Ltd.</p>
<p>48 Leicester Square</p>
<p>London</p>
<p>WC2H 7LU</p>
</div>
</footer>
<script src="javascript.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-+sLIOodYLS7CIrQpBjl+C7nPvqq+FbNUBDunl/OZv93DB7Ln/533i8e/mZXLi/P+" crossorigin="anonymous"></script>
</html>