-
Notifications
You must be signed in to change notification settings - Fork 0
/
5a-d.html
129 lines (110 loc) · 2.2 KB
/
5a-d.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<title> Exercise 5</title>
<style>
.tahoma {
font-weight: bold;
font-family: tahoma;
font-size: 22px;
margin-bottom: 60px;
}
.Arial {
font-weight: bold;
font-family: Arial;
font-size: 25px;
margin-bottom: none;
line-height: 1px;
}
.sales {
color: red;
font-style: italic;
font-family: Arial;
font-size: 18px;
line-height: 4px;
margin-bottom: 60px;
}
.verdana {
font-weight: bold;
font-family: verdana;
font-size: 20px;
line-height: 2px;
}
.verdana2 {
font-family: verdana;
color: grey;
line-height: 0px;
}
.verdana3 {
margin-top: 30px;
font-family: verdana;
width: 300px;
}
.getstarted {
background-color: green;
color: white;
border-radius: 5px;
border: none;
padding-top: 6px;
padding-bottom: 6px;
padding-left: 12px;
padding-right: 12px;
font-size: 14px;
margin-bottom: 50px;
}
.shop1 {
font-family: arial;
font-weight: bold;
font-size: 23px;
text-align: center;
line-height: 7px;
}
.shop2 {
font-family: arial;
font-weight: bold;
font-size: 14px;
text-align: center;
margin-bottom: 10px;
}
.shop3 {
color: blue;
font-family: arial;
font-size: 14px;
text-align: center;
margin-bottom: 10px;
}
</style>
</head>
<body>
<p class="tahoma">
This is Tahoma Font
</p>
<p class="Arial">
Biggest Deals of the Year!
</p>
<p class="sales">
Sales end Tuesday
</p>
<p class="verdana">
HTML CSS Course
</p>
<p class="verdana2">
Beginner to pro
</p>
<p class="verdana3">
In this course, we'll learn the skills you need to become a developer.
</p >
<button class="getstarted">
Get Started
</button>
<p class="shop1">
Shopping for your business?
</p>
<p class="shop2">
See how Apple at Work can help.
</p>
<p class="shop3">
Learn more >
</p>
</body>
</html>