-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Kevin Powell Youtube: https://youtu.be/TskEjH6VkSM -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CSS Layered Card Demo</title>
<link rel="stylesheet" href="style.css" />
<script src="./main.js"></script>
</head>
<body>
<main>
<div class="card">
<div class="welcome">
<div>
<h1 class="hello">Hi George</h1>
<p>
You can contact us whenever you need help or just curios about
something.
</p>
</div>
</div>
<div class="start-chatting">
<h2 class="card-heading">Start Chatting</h2>
<div class="rep-info">
<img src="https://i.pravatar.cc/300" alt="Smiley" />
<p class="name">Essie Walton</p>
<div id="userStatus" class="status" data-status="away">Away</div>
</div>
<button class="button" onclick="sendMessage()">Send a message</button>
</div>
</div>
</main>
</body>
</html>