This repository was archived by the owner on Jan 11, 2024. It is now read-only.
forked from Technigo/project-pizza-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 1.22 KB
/
index.html
File metadata and controls
35 lines (31 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./style.css" />
<title>InstaPizza</title>
</head>
<body>
<h1>🍕 InstaPizza 🍕</h1>
<div class="button" id="button" onclick="buttonClicked()">
<p>The easiest way to order pizza.</p>
<p class="call-to-action">Click me to get started!</p>
</div>
<div class="chat-container" id="chatContainer">
<div class="speech-bot bot-triangle" id="botBubble"></div>
<div class="speech-user user-triangle" id="userBubble" onclick="startOrder()"></div>
<div class="speech-bot bot-triangle" id="startOrder"></div>
<div class="speech-bot bot-triangle" id="confirmation"></div>
</div>
<footer>
<div class="footer">
Made by Peggy @<a href="https://blipsandclicks.com">blipsandclicks</a>
during Technigo Bootcamp 2020 for educational purposes.
</div>
<div class="footer"><span>🦊 | </span><img src="./technigo-logo.svg"></div>
</footer>
<script src="./pizzabot.js"></script>
</body>
</html>