-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
119 lines (99 loc) · 4.32 KB
/
index.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pot Luck Planner</title>
<link href="https://fonts.googleapis.com/css?family=Indie+Flower|Roboto" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
</head>
<body>
<header>
<img src="img\LogoPoshPotluck.png" alt="Logo- fork, knife and words">
<!-- <h1 class="title">Potluck Planner!</h1> -->
<nav>
<a class="NavLink" href="index.html">Home</a>
<a class="NavLink" href="aboutUs.html">About Us</a>
<a class="NavLink" href="#">Blog</a>
<a class="NavLink" href="https://front-end-react-ruby.now.sh/">Log In</a>
</nav>
</header>
<div class="home">
<div class="intro">
<img src="img\Fork1.jpg" alt="Fork against a green background">
<h2>Let's get together and eat! </h2>
<p>“People who love to eat are always the best people." -Julia Child</p>
</div>
<section class="content-section middle">
<div class="text-content">
<h2>How it works</h2>
<p>"I enjoy cooking with wine. Sometimes I even put it in the food..." -Julia Child</p>
<p>"Strength is the capacity to break a chocolate bar into four pieces with your bare hands - and then eat just
one of the pieces." -Judith Viorst </p>
<p>"I really don't think I need buns of steel. I'd be happy with buns of cinnamon." -Ellen DeGeneres</p>
<p>"Soup is just a way of screwing you out of a meal." — Jay Leno</p>
<p>"I will not eat oysters. I want my food dead. Not sick, not wounded: dead." — Woody Allen </p>
<p>"After all the trouble you go to, you get about as much actual 'food' out of eating an artichoke as you would
from licking 30 or 40 postage stamps." — Miss Piggy</p>
<p>"My weaknesses have always been food and men — in that order." — Dolly Parton</p>
<p>“If more of us valued food and cheer and song above hoarded gold, it would be a merrier world.” -J.R.R.
Tolkien</p>
</div>
<div class="img-content">
<img src="img\pepperoni-pizza-with-basil-leaves-1260968.jpg" alt="Fresh pizza">
</div>
</section>
<section class="content-section inverse-content">
<div class="img-content">
<img src="img\appetizer-close-up-cucumber-cuisine-406152.jpg" class="img-fluid rounded"
alt="Large bowl of salad">
</div>
<div class="text-content">
<h2>Recipes</h2>
<p>“The only time to eat diet food is while you’re waiting for the steak to cook.” -Julia Child</p>
<p>“My doctor told me I had to stop throwing intimate dinners for four unless there are three other people.”
-Orson Welles.</p>
</div>
</section>
<section class="content-ideas">
<h2>Organize your first potluck!</h2>
<p>"It's so beautifully arranged on the plate — you know someone's fingers have been all over it." - Julia Child
</p>
<img src="img\clear-glass-bottle-with-orange-juice-3767412.jpg" alt="Glass pitchers with drinks">
</section>
<section class="content-pick">
<div class="ideas">
<h4>Menu Ideas</h4>
<p>“A balanced diet is a cookie in each hand.” -Barbara Johnson</p>
<button>
<div class="btn">Take a Look!</div>
</button>
</div>
<div class="ideas">
<h4>E-vite Templates</h4>
<p>“The secret of success in life is to eat what you like and let the food fight it out inside.” -Mark Twain</p>
<button>
<div class="btn">Create</div>
</button>
</div>
<!-- <div class="ideas">
<h4>Menu Ideas</h4>
<p>“If more of us valued food and cheer and song above hoarded gold, it would be a merrier world.” -J.R.R. Tolkien</p>
<button>
<div class="btn">Take a look!</div>
</button>
</div> -->
</section>
</div>
<footer class="footer">
<p>The Posh Potluck</p>
<!-- <div class = "footerNav"> -->
<nav class="footerNav">
<a class="NavLink" href="index.html">Home</a>
<a class="NavLink" href="aboutUs.html">About Us</a>
<a class="NavLink" href="#">Blog</a>
<a class="NavLink" href="https://front-end-react-ruby.now.sh/">Log In</a>
</nav>
</footer>
</body>
</html>