-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (67 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="src/style.css" />
<title>SweetCodeChef AI</title>
<script src="https://unpkg.com/typewriter-effect@latest/dist/core.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/axios.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Gabarito:wght@400;500&family=Jomolhari&family=Poppins:wght@300;400&display=swap"
rel="stylesheet"
/>
<link rel="icon" href="img/logo.png" type="image/icon type" />
</head>
<body>
<div class="container">
<header>
<h1>Welcome to SweetCodeChef!</h1>
</header>
<main>
<div class="form-container">
<p class="description">
Indulge effortlessly at SweetCodeChef! Enter any ingredient, and our
AI creates a personalized dessert recipe just for you. Unleash
culinary creativity with our user-friendly platform—your go-to for
sweet inspiration. Elevate your dessert game at SweetCodeChef!
<span>🧁</span>
</p>
<form id="recipe-generator-form">
<input
type="text"
placeholder="Enter an ingredient for the dessert."
autofocus
required
autocomplete="off"
class="instructions"
id="user-instructions"
/>
<input type="submit" class="submit-button" />
</form>
<div class="hint">i.e: Chocolate, Nuts, Cheese</div>
</div>
<div class="recipe hidden" id="recipe"></div>
</main>
<footer>
Project created by
<a
href="https://www.linkedin.com/in/mariana-tellez-resendiz/"
target="_blank"
title="Mariana's LinkedIn"
>Mariana Tellez Resendiz</a
>
and is
<a
href="https://github.com/MarianaTellezR/dessert-recipes-generator"
target="_blank"
title="Github Repository"
>open-sourced on Github</a
>
</footer>
</div>
<script src="src/index.js"></script>
</body>
</html>