-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext.html
93 lines (72 loc) · 1.72 KB
/
text.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p class="tech">Talking Tech and AI with Google CEO Sundar Pichai!
</p>
<p class="views">
3.4M views · 6 months ago
</p>
<p class="name">
Marques Brownlee ✓
</p>
<p class="description">
Talking tech and AI on the heels of Google I/O. Also a daily driver phone reveal from Google's CEO. Shoutout to Sundar!
</p>
<p class="banner">
Shop early for the best selection of holiday favourites. <span class="span-shop">Shop now > </span>
</p>
<style>
p{
font-family: arial;
margin-top:0px;
margin-bottom:0px;
}
.tech{
font-weight: bold;font-size: 18px;
width:300px;
/* line-height give spacing between the lines of para */
line-height:24px;
margin-bottom:2px;
}
.views{
font-size:14px;
color:rgb(96, 96, 96);
margin-bottom:16px;
}
.name{
font-size: 14px;
color: rgb(96, 96, 96);
margin-bottom: 16px;
}
.description{
font-size:14px;
color: rgb(96, 96, 96);
line-height: 20px;
width:280px;
}
.banner{
color:rgb(255, 255, 255);
font-family: Arial;
font-size: 14px;
font-weight:400;
line-height: 21px;
background-color: rgb(227, 65, 64);
padding-left: 16px;
padding-right: 16px;
padding-top: 16px;
padding-bottom: 16px;
margin-top:50px;
text-align: center;
}
.span-shop:hover{
text-decoration:underline;
cursor:pointer;
}
</style>
</body>
</html>