-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
128 lines (128 loc) · 6.27 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat App Illustration</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<div class="content">
<div class="phone-div">
<div class="phone">
<div class="screen">
<div class="top-layer">
<div class="camera">
<div class="lens">
<div class="reflect"></div>
</div>
</div>
<div class="microphone">
</div>
<div class="top-layer-content">
<div class="profile">
<div class="arrow"></div>
<div class="profile-img">
<img src="./avatar.jpg" alt="avatar">
</div>
<div class="user">
<p class="name">Samuel Green</p>
<p class="info">Available to Walk</p>
</div>
</div>
<div class="ellipsis">
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
<div class="chat-box">
<div class="inbox margin">
<p class="chat">
That sounds great. I'd be <br> happy with that.
</p>
</div>
<div class="inbox margin">
<p class="chat">
Could you send over some <br> pictures of your dog, please?
</p>
</div>
<div class="inbox outbox dog-outbox margin">
<div class="dog-img">
<div class="dog-img-div">
<a href="./dog-image-1.jpg">
<img src="./dog-image-1.jpg" alt="dog-image-1">
</a>
</div>
<div class="dog-img-div">
<a href="./dog-image-2.jpg">
<img src="./dog-image-2.jpg" alt="dog-image-2">
</a>
</div>
<div class="dog-img-div">
<a href="./dog-image-3.jpg">
<img src="./dog-image-3.jpg" alt="dog-image-3">
</a>
</div>
</div>
</div>
<div class="inbox outbox margin">
<p class="chat">
Here are a few pictures. She's <br> a happy girl!
</p>
</div>
<div class="inbox outbox margin">
<p class="chat">
Can you make it?
</p>
</div>
<div class="inbox margin">
<p class="chat">
She looks so happy! The time <br> we discussed works. How <br> long shall I take her out for?
</p>
</div>
<form>
<div class="inbox radio margin">
<div class="radio-div">
<input type="radio" id="thirty" name="time">
<label for="thirty">30 minutes walk</label>
</div>
<div class="price">
<label for="thirty"><span>$29</span></label>
</div>
</div>
<div class="inbox radio margin">
<div class="radio-div">
<input type="radio" id="one" name="time">
<label for="one">1 hour walk</label>
</div>
<div class="price">
<label for="one"><span>$49</span></label>
</div>
</div>
<div class="message">
<input type="text" placeholder="Type a message...">
<button type="submit">
<div class="arrow submit-arrow"></div>
</button>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="texts">
<h1>Simple booking</h1>
<p>
Stay in touch with our dog walkers through the chat interface. This makes it easy to
discuss arrangements and make bookings. Once the walk has been completed you can rate
your walker and book again all through the chat.
</p>
</div>
</div>
</main>
</body>
</html>