-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy path5e.html
More file actions
63 lines (53 loc) · 860 Bytes
/
Copy path5e.html
File metadata and controls
63 lines (53 loc) · 860 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<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: 45px;
font-weight: bold;
margin-bottom: 15px;
}
.price {
margin-bottom: 25px;
}
.buy {
background-color: rgb(0, 113, 227);
color: white;
padding-top: 7px;
padding-bottom: 7px;
padding-left: 15px;
padding-right: 15px;
border-radius: 30px;
font-weight: bold;
cursor: pointer;
display:block;
margin:auto;
}
</style>
<p class="new">
New
</p>
<p class="product">
MacBook Pro
</p>
<p class="title">
Supercharged for pros.
</p>
<p class="price">
From $1999
</p>
<button class="buy">
Buy
</button>