-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chatty</title>
<link rel="stylesheet" type="text/css" href="chatty.css">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
</head>
<body id="main">
<div id="container" class="contain">
<div class="innerDiv">
<h1 id="logo" class="logo">Chatty!</h1>
<div class="inputText">
<input type="text" class="text" id="userInput">
<button id="clearButton" class="btn btn-default">Clear Message Board</button>
<div class="options">
<input type="checkbox" id="darkTheme" label="darkTheme"> Dark Theme</input>
<input type="checkbox" id="largeText" label="largeText"><text id="labelLarge"> Large Text</text></input>
</div>
</div>
<h4 id="header">Messages:</h4>
<div class="messageContainer" id="messageContainer">
<div id="output"></div>
</div>
</div>
</div>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script type="text/javascript" src="loader.js"></script>
<script type="text/javascript" src="populate.js"></script>
<script type="text/javascript" src="chatty.js"></script>
<script type="text/javascript" src="addMsg.js"></script>
</body>
</html>