-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (50 loc) · 1.54 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
<!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" />
<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>
<title>AI Quote Generator</title>
</head>
<body>
<h1>AI Quote Generator</h1>
<main class="container">
<div class="form-container">
<form class="topic" id="quote-generator-form">
<input
type="text"
autofocus="on"
placeholder="Enter a topic you like and we'll generate a quote"
class="text-box"
id="user-instructions"
/>
<input type="submit" class="button" />
<div class="hint">e.g. Flowers, Motivational, Inspirational, etc</div>
</form>
</div>
<br />
<div class="quote hidden" id="text-quote"></div>
<br />
<footer>
Created with ❤️ by
<a href="https://github.com/analiviag" target="_blank"
>Analivia Costa</a
>
- Open-source on
<a
href="https://github.com/analiviag/AI-quote-generator"
target="_blank"
>
GitHub
</a>
- Hosted on
<a href="https://endearing-hotteok-0d2267.netlify.app/" target="_blank">
Netlify</a
>
</footer>
</main>
</body>
<script src="src/index.js"></script>
</html>