-
Notifications
You must be signed in to change notification settings - Fork 0
/
pickled_jalapenos.html
59 lines (59 loc) · 2.34 KB
/
pickled_jalapenos.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Pickled Jalapenos</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<script src="/javascripts/javascript.js"></script>
<style>
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 40%;
}
.row {
display: flex;
}
.column {
flex: 50%;
padding-top: 0;
padding-bottom: 0;
padding-left: 5%;
padding-right: 5%;
}
</style>
</head>
<body>
<h1>Pickled Jalepenos</h1>
<p>This is a really easy condiment to make and tastes way better than store-bought jalapenos. These last around 2 months refrigerated. Original recipe found <a href="https://gimmedelicious.com/2015/08/31/quick-10-minute-pickled-jalapenos/">here</a>.</p>
<h2>Ingredients</h2>
<ul>
<li>1 cup white vinegar</li>
<li>1 cup water</li>
<li>2 cloves garlic (smashed)</li>
<li>2 tablespoons sugar (1 tablespoon for spicier jalapenos and 3 tablespoons for more mild)</li>
<li>1 tablespoon salt</li>
<li>7-8 jalapeno peppers, thinly sliced</li>
<li>1 thin carrot, give or take, thinly sliced</li>
</ul>
<div class="row">
<div class="column">
<img src="/images/pickled_jalapeno_ingredients.jpg" alt="Ingredients for pickled jalapenos organized and laid out on stovetop" style="width:100%" />
</div>
<div class="column">
<img src="/images/pickled_jalapeno_ingredients_prepared.jpg" alt="Cutting board showing prepared ingredients with sliced jalapenos and carrots and smashed garlic" style="width:100%" />
</div>
</div>
<h2>Instructions</h2>
<ol>
<li>Combine the vinegar, water, garlic, sugar, and salt in a medium pot and bring to a boil.</li>
<li>Once boiling, remove from heat and add jalapeno and carrot slices.</li>
<li>Let sit around 10 minutes. The peppers will start to lighten as they lightly cook in the brine.</li>
<li>Once the brine and peppers have cooled, transfer to sealable jars for storage. Best served cooled.</li>
</ol>
<img src="/images/pickled_jalapenos_jarred.jpg" alt="Ingredients and brine in mason jars with labeled tape on lid showing jarred date" class="center" />
<footer>
<a href="http://robertjmccaffery.com/recipes.html">Back to Recipes</a> | <a href="http://robertjmccaffery.com/">Home</a>
</footer>
</body>
</html>