forked from Junyi-Lu/COMP3020-GROUP12-JARDb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
askAI.html
83 lines (64 loc) · 2.97 KB
/
askAI.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
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="styleAI.css">
</head>
<body>
<div class="menu-bar">
<a href="index.html">
<h1 class="logo" style="padding-left:100px">JAR<span>Db.</span></h1>
</a>
<div class="search-container">
<input type="search" maxlength="70" class="search-data" placeholder="Search JARDb" , required>
<p id="selectedid"></p>
</div>
<ul>
<li><a href="index.html">Home<i class="ri-home-3-line"></i></a></li>
<li><a href="#">Categories </a>
<div class="dropdown-menu">
<ul>
<li><a href="#">Movies<i id="fd" class="fas fa-caret-right"></i></a>
<div class="dropdown-menu-1">
<ul>
<li><a href="categoryPages/action.html">Action</a></li>
<li><a href="categoryPages/comedy.html">Comedy</a></li>
<li><a href="categoryPages/fantasy.html">Fantasy</a></li>
<li><a href="categoryPages/sciFi.html">Sci-Fi</a></li>
<li><a href="categoryPages/horror.html">Horror</a></li>
</ul>
</div>
</li>
<li><a href="#">Watch List</a>
</li>
</ul>
</div>
</li>
<li><a href="askAI.html" title="Answer some questions and get an AI to suggest a movie.">AskAI<i
class="ri-robot-line"></i></a></li>
<li><a href="userCard.html">User<i class=""><i class="ri-user-5-fill"></i></a></li>
</ul>
</div>
<p style="background-image: url('background.jpg')"></p>
<div class="panel">
<div class="question-container" id="question">
Question goes here.
</div>
<div class="option-container">
<button class="option" onclick="" id="op1">option1</button>
<button class="option" id="op2">option2</button>
<button class="option" id="op3">option3</button>
<button class="option" id="op4">option4</button>
</div>
<div class="navigation" id="nav-container">
<button class="next">Next</button>
</div>
</div>
<script src="scriptAI.js"></script>
</body>
</html>