forked from TrevorStubbs/chocolate-pizza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (112 loc) · 5.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="css/reset.css" type="text/css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Yellowtail&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&display=swap" rel="stylesheet">
<link href="css/style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<header>
<section id="top-section">
<figure id="logo">
<img src="img/logo.png" alt="logo" title="logo">
<article id="logo-text">
<h2>Delicious</h2>
<h4>THE BEST FOOD BLOG ON THE WEB</h4>
</article>
</figure>
<div id="links">
<figure class="inline">
<img src="img/fb-icon.png" alt="facebook" title="facebook">
<img src="img/twit-icon.png" alt="twitter" title="twitter">
<img src="img/gp-icon.png" alt="google" title="google">
<img src="img/insta-icon.png" alt="instagram" title="instagram">
<img src="img/flic-icon.png" alt="flickr" title="flickr">
<img src="img/pint-icon.png" alt="pintrest" title="pintrest">
</figure>
<figure id="old-school" class="inline">
<img src="img/rss-icon.png" alt="rss" title="rss">
<img src="img/mail-icon.png" alt="email" title="email">
</figure>
</div>
</section>
<nav>
</nav>
</header>
<main>
<section id="title">
<aside id="date">
<h1>Chocolate Pizza</h1>
<h3>POSTED ON 5 MAY 2020 / DESSERTS</h3>
</aside>
<figure>
<div id="print" >
<img class="inline" src="img/print-icon.png" alt="print" title="print">
<aside class="inline">PRINT</aside>
</div>
</figure>
</section>
<section>
<figure id="hero">
<img src="img/choco-pizza.png" alt="chocolate" title="chocolate">
</figure>
</section>
<section id="instructions">
<article>
<p>For the fig-swirl: Melt butter over medium heat in a saucepan. Add brown sugar and stir to dissolve. Halve all of the figs and toss in the saucepan with water and lemon juice. Cook over medium heat, stirring frequently, until you have a chunky-jammy mixture. Add salt with one or two stirs, set aside and let cool completely.</p>
<p>Ice Cream: In a small pot over medium heat, combine milk, and granulated sugar until sugar is completely dissolved and the milk is just barely lukewarm. Whisk in the egg yolks. Set mixture in the fridge and wait until the fig mixture is cooled.</p>
<p>Using an ice cream machine, pour liquids into a frozen basin and process according to manufacturer instructions, i.e., let spin and thicken for 20 minutes before adding mascarpone, fig jam mixture, and the nuts.
Continue to process for +/- 10 minutes. Pour semi-frozen mixture into a pyrex dish or glass tupperware. Freeze for at least two hours before serving.
</p>
</article>
</section>
<section>
<figure id="paper">
<img src="img/list-bg.png" alt="list" title="list">
</figure>
<form id="items">
<ul id="checkbox1">
<li><input type="checkbox" name="ingredients" value="milk">1/2 cups milk</input></li>
<li><input type="checkbox" name="ingredients" value="cheese">1/2 cup mascarpone</input></li>
<li><input type="checkbox" name="ingredients" value="salt">1/2 tsp pink salt</input></li>
<li><input type="checkbox" name="ingredients" value="figs">1lb Black Mission Figs</input></li>
<li><input type="checkbox" name="ingredients" value="brownSugar">1/2 cup brown sugar</input></li>
<li><input type="checkbox" name="ingredients" value="water">2-4 tbsp water</input></li>
</ul>
<ul id="checkbox2">
<li><input type="checkbox" name="ingredients" value="cream">1 1/2 cups heavy cream</input></li>
<li><input type="checkbox" name="ingredients" value="granulatedSugar" checked="checked">1/3 granulated sugar</input></li>
<li><input type="checkbox" name="ingredients" value="eggs" checked="checked">2 egg yolks</input></li>
<li><input type="checkbox" name="ingredients" value="lemon">1 lemon, juiced</input></li>
<li><input type="checkbox" name="ingredients" value="butter">2 tbsp butter</input></li>
<li><input type="checkbox" name="ingredients" value="pecans">1 cup honey roasted pecans, roughly <br/> chopped</input></li>
</ul>
</form>
</section>
</main>
<footer>
<nav id=bottomNav>
</nav>
<section>
<div id="face">
<img class="inline" src="img/van-pic.png" alt="vanessa" title="vanessa">
<article id="lady" ><h2>Vanessa Stevenson</h2>
Food enthusiast, photography fan. Add a pinch of raw foodism and that's pretty much who I am.
</article>
</div>
<section id="share-button">
SHARE RECIPE
</section>
</section>
<section id="foot">
<img id="lilLogo" src="img/small-logo.png" alt="small-logo" title="small-logo">
<article>Delicious © 2020 · All Rights Reserved.<br />Proudly published with Ghost.</article>
</section>
<script src="js/app.js"></script>
</footer>
</body>
</html>