-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path9e.html
58 lines (56 loc) · 1.23 KB
/
9e.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.tweetbox{
width:370px;
height:48px;
box-shadow: 0px 1px 4px rgba(0,0,0,0.3);
border-radius:5px;
}
.lightskin{
vertical-align:middle;
margin-top:6px;
margin-left:6px;
width:35px;
height:35px;
border-radius:25px;
}
.maa{
font-family:arial;
margin-top:8px;
margin-left:4px;
color:rgb(142, 142, 142);
font-size:12px;
display:inline-block;
vertical-align:middle;
border:none;
width:230px
}
.Tweet{
vertical-align: middle;
margin-left:10px;
margin-top:8px;
width:60px;
border-radius:20px;
padding-top:5px;
padding-bottom:5px;
font-size:12px;
font-weight:bold;
border:none;
color:white;
background-color:rgb(74, 153, 233);
}
</style>
</head>
<body>
<div class="tweetbox">
<img class="lightskin" src="thumbnail\lightskin.jpeg" >
<input class="maa" type="text" placeholder="Maa chudegi very soon!">
<button class="Tweet">Tweet</button>
</div>
</body>
</html>