-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path5d.html
More file actions
60 lines (57 loc) · 1.42 KB
/
5d.html
File metadata and controls
60 lines (57 loc) · 1.42 KB
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
<!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="name">MacBook Pro</p>
<p class="detail">Supercharged for pros.</p>
<P class="price">From $1999</P>
<button class="purchase">Buy </button>
<style>
.new{
color:red;
font-family: arial;
text-align: center;
margin-bottom:5px;
}
.name{
font-family: arial;
text-align: center;
font-weight: bold;
color:rgb(63, 57, 57);
margin-top:0px;
font-size: 20px;
margin-bottom: 0px;
}
.detail{
font-family: arial;
font-weight: bold;
text-align: center;
font-size: 40px;
margin-top:0px;
margin-bottom: 0px;
}
.price{
font-family: arial;
text-align: center;
margin-top:5px;
}
.purchase{
margin-left:690px;
padding-left: 18px;
padding-top: 8px;
padding-right: 18px;
padding-bottom: 8px;
color:white;
background-color: rgb(54, 108, 255);
border:none;
border-radius: 4cm;
cursor: pointer;
}
</style>
</body>
</html>