-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (36 loc) · 1.4 KB
/
index.html
File metadata and controls
43 lines (36 loc) · 1.4 KB
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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://unpkg.com/react@18/umd/react.production.min.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js" crossorigin></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<script src="app.js" type="text/babel"></script>
<style>
.medium-margin {
margin: 8px 0px;
}
input[type=number] {
width: 75px;
}
h1 {
font-size: 25px;
}
h2 {
font-size: 20px;
}
</style>
</head>
<body>
<div id="app">
<p>Loading...</p>
</div>
<h4 style="margin-top: 64px;">Try these recipes:</h4>
<div class="medium-margin">
<a href="?ingredientLabels=Servings%7CGrounds+%28g%29%7CWater+%28oz%29%7CWater+%28ml%29%7CHoney+%28g%29%7CHalf-and-half&recipeRatios=1%7C8%7C6%7C177%7C14%7C40">My favorite coffee recipe w/ honey and half-and-half</a>
</div>
<div class="medium-margin">
<a href="?ingredientLabels=Servings%7CMilk+%28oz%29%7CCocoa+powder+%28tbsp%29%7CHoney+%28g%29%7CVanilla+%28tsp%29&recipeRatios=1%7C12%7C1.5%7C15%7C0.5">Hot chocolate</a>
</div>
<p style="margin-top: 32px;">Source code: <a href="https://github.com/locofocos/anything-ratio-calc">https://github.com/locofocos/anything-ratio-calc</a></p>
</body>
</html>