-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (40 loc) · 1.33 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
41
42
43
44
45
46
47
48
<!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="style.css">
<title>monkeyweather</title>
</head>
<body>
<main>
<input id="toggle" type="checkbox"></input>
<label for="toggle" id="hamburgerButton">
<div class="top-bun"></div>
<div class="meat"></div>
<div class="bottom-bun"></div>
</label>
<aside id="sideDisplay">
<header>
<h2 id="asideHeader">Information for your trip</h2>
</header>
<div id="sideContent">
</div>
</aside>
<div id="chat">
<header>
<h2 id="chatHeader">WeatherMonkey</h2>
</header>
<div id="chatBox">
<div class="botMessage"><p id = "botText">Please say hi to start the chat.</p></div>
</div>
</div>
</main>
<div id ="sendText">
<input id="userInput" type="text" placeholder="Hey you! Type here to chat with me... " autofocus="true">
<button id="sendButton" type="submit"> Send </button>
</div>
<script type="module" src="js/Main.js"></script>
</body>
</html>