-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (96 loc) · 4.48 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- This file has been downloaded from https://bootdey.com -->
<!-- All snippets are MIT license https://bootdey.com/license -->
<title>Let's Talk</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="https://kit.fontawesome.com/5548f5ed00.js" crossorigin="anonymous"></script>
<link href="https://netdna.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="script.js" type="module"></script>
<link rel="shortcut icon" href="images/chat-logo.jpg">
</head>
<body>
<nav class="navbar navbar-light " style="font-size: 25px; font-family: sans-serif; background-color: whitesmoke;">
<img src="images/logo.png" width="124" height="100"
class="d-inline-block align-top" alt="">
<h2 style="color: black;" >Let's Talk 😀 </h2>
</nav>
<div id="container">
<div class="container2">
<div class="ks-messenger">
<div class="ks-discussions">
<div class="ks-header">
<span class="col-4" style="text-align: center">
<i class="fas fa-comments" style="color: dodgerblue"></i>
</span>
<span class="col-4" style="text-align: center">
<i class="fas fa-video" style="color: dodgerblue"></i>
</span>
<span class="col-4" style="text-align: center">
<i class="fas fa-stream" style="color: dodgerblue"></i>
</span>
</div>
<div class="ks-body ks-scrollable jspScrollable" data-auto-height="" style="height: 400px; overflow-y: auto; padding: 0px; width: 339px;" tabindex="0">
<div class="jspContainer">
<div class="jspPane" style="padding: 0px; top: 0px; width: 339px;">
<ul class="ks-items" id="chat-list">
</ul>
</div>
<div class="jspVerticalBar">
<div class="jspCap jspCapTop"></div>
<div class="jspTrack" style="height: 100px;">
<div class="jspDrag">
<div class="jspDragTop"></div>
<div class="jspDragBottom"></div>
</div>
</div>
<div class="jspCap jspCapBottom"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container2" style="overflow-y: scroll; height: 500px; padding-top: 40px">
<span id="temptext" style="height: 100%; width: 100%; text-align: center; font-size: x-large">
Click on generate new step to get updates !!
</span>
</div>
</div>
<div class="container3">
<br>
<button type="button" class="btn btn-danger" id="generate-step" style="margin: auto">Generate new step</button>
</div>
<template>
<li class="ks-item" id="ChatListItem">
<a href="#">
<span class="ks-avatar">
<img src="./images/avatar1.png" width="36" height="36" id="Image"></img>
</span>
<div class="ks-body">
<div class="ks-name">
<span id="Name">Eric George</span>
<span id="Time" class="ks-datetime">just now</span>
</div>
<div class="ks-message" id="Message">Why didn't he come and talk to me himse...</div>
</div>
</a>
</li>
</template>
<footer class="container py-3" style="align-content: center;" >
<div>
<i class="fa fa-bolt" aria-hidden="true"></i>
coded
<i class="fa fa-code" aria-hidden="true"></i>
with
<i class="fa fa-heart" aria-hidden="true"></i>
by
<span style="font-weight:bold;"><a href="https://kuljeet-123.github.io"> Kuljeet Singh </a></span>
</div>
</footer>
</body>
</html>