-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (66 loc) · 3.05 KB
/
index.html
File metadata and controls
73 lines (66 loc) · 3.05 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
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
<!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" />
<title>Turkish Airlines ® | AI chatbot </title>
<link rel ="stylesheet" href="style.css">
<link rel="shortcut icon" href="//www.turkishairlines.com/theme/img/icons/favicon.ico" />
<link rel="stylesheet" href="/css/style.css?version=99">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="header">
<a href="" class="logo"><img src="https://cdn.turkishairlines.com/m/2190da9e53a70e4e/original/THY-LOGO.png" class="hidden-sm hidden-xs" height="40px" alt="THY LOGO"></a>
<ul>
<!----- <li><a href="" class="underline">CONTACT WITH STEWARDS </a></li>
<li><a href="" class="underline">RATE YOUR FLIGHT</a></li>
<li><a href="" class="underline">WHERE IS MY BAGAGE?</a></li> -->
</ul>
</div>
<div class="headermobile">
<div class="mobilenav">
<a href=""><img src="https://cdn.turkishairlines.com/m/14f15626e0a5407c/original/Turkish-Airlines-Small-3x-png.png" alt="" class="logomobile"></a>
<span href="javascript:void(0);" onclick="myFunction()" class="material-symbols-outlined icon">menu</span>
<ul>
<!--<li><a href="" >Üye ol</a></li>
<li><button><i class="fa fa-user"></i></button></li>--->
</ul>
</div>
<div class="menulinks" id="menulinksid">
<ul>
<!------ <li><a href="" >PLANLA & UÇ </a></li>
<li><a href="" >SEYAHAT DENEYİMİ</a></li>
<li><a href="" >KEŞFET</a></li> -->
</ul>
</div>
</div>
<script>
function myFunction() {
var x = document.getElementById("menulinksid");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}
</script>
<div class="ai">
<div class="glass">
<h1>What is your question about?</h1>
<div class="input">
<input
type="text"
id="userBox"
onkeydown="if(event.keyCode == 13){ talk()}"
placeholder="Type your question . . ."
/>
</div>
<p id="chatLog">* Do not forget to correct your mistakes you made in spelling. </br> If you have an issue about not getting the answer, please try ask in different type.</p>
</div>
<script src="aibot.js"></script>
</div>
</body>
</html>