-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5e.html
68 lines (59 loc) · 1.17 KB
/
5e.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
<!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="new">New</p>
<p class="mac">MacBook Pro</p>
<p class="pros">Supercharged for pros.</p>
<p class="from">From $1999 </p>
<div class="div1">
<button class="buy">Buy</button>
</div>
<style>
p{
font-family:arial;
margin-top: 0px;
margin-bottom:0px;
text-align: center;
}
.new{
font-size:16px;
color:rgb(220, 143, 100);
font-weight: bold;
margin-bottom: 5px;
}
.mac{
font-size: 24px;
font-weight: bold;
margin-bottom: 0px;
}
.pros{
font-size: 48px;
font-weight: bold;
margin-bottom: 9px;
}
.from{
font-weight: 500;
margin-bottom: 10px;
}
.div1{
text-align: center;
}
.buy{
color:white;
border:none;
background-color: rgb(49, 111, 220);
padding-top:8px;
padding-bottom:8px;
padding-left:16px;
padding-right:16px;
border-radius: 18px;
font-size:16px;
}
</style>
</body>
</html>