-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (28 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="icon" href="flam.png">
<title>FireSide Chat</title>
<link rel = "stylesheet" href = "css/style.css"/>
<link rel = "stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.1/animate.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.css">
<head>
<body>
<script src='https://cdn.firebase.com/js/client/2.2.1/firebase.js'></script>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js'></script>
<script src="js/sweetalert.min.js"></script>
<script>
function about(){
swal("This is a chat application", "I feel like you should know this.")
}
</script>
<center>
<h1 id = "title" class="animated fadeIn">FireSide Chat</h1>
<input type = "button" id="start_button" class="animated fadeIn" value = "Start" onClick = "window.location.href ='chat.html';"></input>
<input type = "button" value = "About" id="aboot" class="animated fadeIn" onClick = "about()"></input>
</center>
<p id="version">Version 0.0.1 Alpha</p>
</body>
</html>