-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5f.html
61 lines (54 loc) · 901 Bytes
/
5f.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
<p class="new">
New
</p>
<p class="product">
samsung
</p>
<p class="title">
supercharged for pros.
</p>
<p class="price">
From $300
</p>
<p>
<span class="buy">Buy</span>
</p>
<style>
p{
font-family: Arial;
text-align:center;
margin-top:0;
margin-bottom: 0;
}
.new{
color:rgb(245, 99, 0);
margin-bottom: 10px;
}
.product{
font-size:24px;
font-weight:bold;
margin-bottom:5px;
}
.title{
font-size:50px;
font-weight:bold;
margin-bottom:5px;
}
.price{
font-weight:bold;
color:grey;
margin-bottom:15px;
}
.buy
{
background-color: rgb(0, 113, 227);
font-weight: bold;
color: white;
padding-top:8px;
padding-bottom:8px;
padding-right:15px;
padding-left:15px;
border-radius:30px;
cursor: pointer;
}
</style>