-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtwitter.html
More file actions
46 lines (38 loc) · 831 Bytes
/
Copy pathtwitter.html
File metadata and controls
46 lines (38 loc) · 831 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
43
44
45
46
<!DOCTYPE html>
<head>
<title>Twitter</title>
<style>
.puppy {
width: 75px;
height: 75px;
border-radius: 100px;
vertical-align: middle;
}
.text {
color: rgb(106, 105, 105);
font-family: arial;
font-size: 15px;
vertical-align: middle;
width: 200px;
border: none;
margin-left: 10px;
}
.tweet {
background-color: rgb(37, 166, 188);
color: white;
font-weight: bold;
border-radius: 25px;
padding: 10px;
padding-left: 18px;
padding-right: 18px;
border: none;
vertical-align: middle;
cursor: pointer;
}
</style>
</head>
<body>
<img class="puppy" src="pup.jpg">
<input class="text" type=text placeholder="What's happening?">
<button class="tweet">Tweet</button>
</body>