-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatdiv.html
More file actions
42 lines (39 loc) · 775 Bytes
/
Copy pathcatdiv.html
File metadata and controls
42 lines (39 loc) · 775 Bytes
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>
<head>
<title>Cat</title>
<style>
div{
width:300px;
height: 50px;
box-shadow: 0 0 6px rgba(0,0,0,0.3);
padding: 10px;
border-radius: 6px;
}
.cat{
width: 50px;
height: 50px;
vertical-align: middle;
border-radius: 100px;
}
.text{
border: none;
font-family: arial;
}
.tweet{
background-color: rgb(7, 121, 146);
color: white;
border-radius: 20px;
border: none;
padding: 8px;
padding-left: 12px;
padding-right: 12px;
}
</style>
</head>
<body>
<div>
<img class="cat" src="cat1.jpeg">
<input class="text" type="text" placeholder="Whats's happening?">
<button class="tweet">Tweet</button>
</div>
</body>