-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtutorialClient.html
43 lines (34 loc) · 1.3 KB
/
tutorialClient.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
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- link to style sheet - we'll get to his later! -->
<link rel="stylesheet" type="text/css" href="tutorialStyle.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Chat</title>
</head>
<body>
<!-- In the beginning there was a div for the header -->
<div class="header">
<h2>Chat App</h2>
</div>
<!-- But! Here's a div that binds them all! -->
<div class="container">
<!-- and in the darkness... presents the message... -->
<div id="inset">
<!-- but first this div collects your name! -->
<div id = "fixed">
<p id="enter"> Please enter your screen name:</p></br>
<input type="text" id="inputName" placeholder="Name"></input>
</div>
<ul id="msgHolder"></ul>
</div>
</div>
<!-- This div holds the input box -->
<div class="bottom">
<!-- <div class="bottom"> -->
<input placeholder="Type here" id="inputMsg"></input>
<!-- </div> -->
</div>
<script type="text/javascript" src="tutorialclient.js"></script>
</body>
</html>