-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (41 loc) · 1.64 KB
/
index.html
File metadata and controls
44 lines (41 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<title>Messenger</title>
<meta name="viewport" content="width=device-width , initial-scale=1.0">
<link rel="stylesheet" href="/index.css">
<link rel="stylesheet" href="/font.css">
</head>
<body>
<div class="topbar">
<a href="/front.html"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
<path d="M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 288 480 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-370.7 0 73.4-73.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-128 128z"/>
</svg></a>
<p>MESSENGER</p>
</div>
<div class="chatbox">
<!-- <div class="texts">
<p style="color:red">Admin</p>
<p>Welcome!!</p>
</div>
<div class="texts">
<p style="color:red">Admin</p>
<p>Happy Chatting...</p>
</div> -->
<!-- <div class="texts" style="margin:5px 10px 5px auto; background-color: coral; border-radius: 50px 50px 0px 50px;">
<p style="color:white">Aditya</p>
<p style="color:black">Hello</p>
</div> -->
</div>
<form name="Myform" autocomplete="off" action="/" method="post">
<input type="text" name="mes" placeholder="Type here....">
<input type="submit" value="Send" name="sub">
</form>
<script>
window.onload = function()
{
window.scrollBy(0,100000000000);
}
</script>
</body>
</html>