-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (38 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>You asked me for a cuddle app, so...</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<header>
<h2>Cuddlebuddies</h2>
</header>
<div class="output-window">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQvs7MyGIHVi2zKuOy5uJw0PmpRtgzk7Y-AxW2vBGIn4iGXC_WAAOj_dvY" alt="Cuddlebuddies" title="Cuddlebuddies" class="image" id="teddy-bear">
</div>
<div class="question-window">
<button id="start-button">Cuddle with Me</button>
</div>
<div class="answer-window">
<div class="options" id="choice1">
</div>
<div class="options" id="choice2">
</div>
<div class="options" id="choice3">
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>
<template id="input">
<div id="input-field">
<input type="text" id="input-text">
<button id="submit">Talk to me</button>
</div>
</template>
<!-- <template id="question1choices">
<span id="choice1"></span><span id="choice2"></span><span id="choice3"></span>
</template>
-->