-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (88 loc) · 3.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="chatBody">
<div class="top">
<div class="backArrow">
<img src="img/back-arrow.png">
</div>
<div class="profileImage">
<img class="dp" src="img/osioke folded arms.JPG">
</div>
<div class="contactName">
<p>Osioke</p>
</div>
<div class="blankSpace"></div>
<div class="videoCall">
<img src="img/videocam.png">
</div>
<div class="call">
<img src="img/call.png">
</div>
<div class="dotMenu">
<img src="img/menu.png">
</div>
</div>
<div class="chat">
<div class="chatBubbleLeft">
<p>But first I have to get into the mindset required</p>
</div>
<div class="chatBubbleLeft">
<p>Like reshape how I think</p>
</div>
<div class="chatBubbleLeft">
<p>Then, building is easy</p>
</div>
<div class="chatBubbleLeft">
<figure class="unfurlImage">
<img src="img/cs50w.jpg">
<figcaption>HarvardX: CS50's Web Programming with Python and JavaScript</figcaption>
</figure>
<p>So I am currently going through <a href="https://www.edx.org/learn/web-development/harvard-university-cs50-s-web-programming-with-python-and-javascript">https://www.edx.org/learn/web-development/harvard-university-cs50-s-web-programming-with-python-and-javascript</a></p>
</div>
<div class="chatBubbleLeft">
<p>The way they explain it works for me</p>
</div>
<div class="chatDay">
<p class="chatDayText">Today</p>
</div>
<div class="ownChat">
<div class="chatBubbleRight">
<p>Alright. That's fair</p>
</div>
<div class="chatBubbleRight">
<p>I always say to folks who just started to build something. Look to what they have around them</p>
</div>
<div class="chatBubbleRight">
<p>Build this WhatsApp chat UI</p>
</div>
</div>
</div>
<div class="bottom">
<div class="textField">
<div class="emojiPicker">
<img src="img/smiley.png">
</div>
<div class="typeField">
<input class="textTypeField" type="text" placeholder="Message">
</div>
<div class="attachmentPicker">
<img src="img/link.png">
</div>
<div class="imagePicker">
<img src="img/camera.png">
</div>
<div class="micButton">
<img src="img/mic.png">
</div>
</div>
</div>
</div>
</body>
</html>