-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtexts.html
77 lines (76 loc) · 1.78 KB
/
texts.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
<!DOCTYPE html>
<style>
p {
font-family: Arial, Helvetica, sans-serif;
margin-top: 0px;
margin-bottom: 0px;
}
.video-title{
font-weight: bold;
font-size: 18px;
width: 300px;
line-height: 24px;
margin-bottom: 5px;
}
.video-stats{
font-size: 14px;
color: rgb(96, 96, 96);
margin-bottom: 20px;
}
.video-author{
color: rgb(96, 96, 96);
font-size: 14px;
margin-bottom: 20px;
}
.description{
width: 270px;
color: rgb(96, 96, 96);
font-size: 14px;
line-height: 22px;
margin-bottom: 100px;
}
.apple{
margin-bottom: 50px;
font-size: 14px;
background-color: rgb(227, 65, 64);
color: white;
text-align: center;
padding-top: 18px;
padding-bottom: 18px;
}
.shop:hover{
text-decoration: underline;
cursor: pointer;
}
.apple_image{
width: 30px;
margin-bottom: 20px;
}
</style>
<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="video-title">
Learning HTML/CSS Day 2
</p>
<p class="video-stats">
3.4M views · 6 months ago
</p>
<p class="video-author">
Anik Chakraborty ✓
</p>
<p class="description">
In todays video I share with you all my progress in the 1 hour i spent
today to learn html css.
</p>
<img src="images/apple.png" class="apple_image">
<p class="apple">
Shop early for the best selection of holiday favourites.
<span class="shop">Shop now ></span>
</p>
</body>
</html>