This repository was archived by the owner on Nov 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.4 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/message.css">
<link rel="icon" type="image/png" href="favicon.jpg" />
<title>Messagerie BotFacebook</title>
</head>
<body class="body">
<div class="header">
Chat Bot Messenger
</div>
<div class="messageBox">
<ul class="messages">
<li class="message">
<h1 class="name">Matthew </h1>
<img class="user" src="favicon.jpg"/>
<p class="text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus porta condimentum ante id tristique. Nulla eget vestibulum dolor.
Omae Wa Mou Shindeiru<br/>
NANI ?<br/>
*dies*
</p>
</li>
<li class="message">
<h1 class="name">Bot</h1>
<img class="user" src="http://lorempixel.com/210/210"/>
<p class="text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus porta condimentum ante id tristique. Nulla eget vestibulum dolor.
</p>
</li>
</ul>
</div>
<div class="textBox">
<textarea class="message" placeholder="Ecris ton message..."></textarea>
</div>
<div class="actions">
<button class="button">Envoi ton message</button>
</div>
<script src="js/message.js"></script>
</body>
</html>