-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path04-text.html
More file actions
62 lines (60 loc) · 1.11 KB
/
04-text.html
File metadata and controls
62 lines (60 loc) · 1.11 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
61
62
<!DOCTYPE html>
<html>
<head>
<title>
HELLO WORLD
</title>
<style>
p {
font-family: Arial, Helvetica, sans-serif;
margin-top: 0px;
font-weight: bold;
text-align: center;
}
.new {
color: rgb(247, 148, 0);
margin-bottom: 7px;
}
.mac {
font-size: 25px;
margin-bottom: 0px;
}
.super {
font-size: 42px;
margin-bottom: 12px;
}
.price {
font-weight: normal;
}
.buy {
margin-left: 46%;
margin-right: 50%;
color: white;
border: none;
background-color: rgb(2, 122, 250);
padding-top: 5px;
padding-bottom: 5px;
padding-left: 13px;
padding-right: 13px;
border-radius: 13px;
}
</style>
</head>
<body>
<p class="new">
New
</p>
<p class="mac">
MacBook Pro
</p>
<p class="super">
Supercharged for pros.
</p>
<p class="price">
From $<span></span>1999
</p>
<button class="buy">
Buy
</button>
</body>
</html>