-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtext-examples.html
More file actions
121 lines (102 loc) · 2.3 KB
/
Copy pathtext-examples.html
File metadata and controls
121 lines (102 loc) · 2.3 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Studies</title>
</head>
<body>
<style>
.tahoma {
font-family: tahoma;
font-size: 25px;
font-weight: bold;
}
div {
margin-bottom: 50px;
width: 400px;
}
.sales {
font-family: Arial, Helvetica, sans-serif;
font-size: 25px;
margin: 0px;
font-weight: bold;
}
.sales-end {
font-family: Arial, Helvetica, sans-serif;
color: red;
font-size: 18px;
margin: 0px;
}
.verdana-title {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 20px;
margin: 0;
}
.verdana-name {
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: gray;
margin-bottom: 25px;
margin-top: 7px;
}
.verdana-description {
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
button {
background-color: green;
border: none;
color: white;
padding-right: 15px;
padding-left: 15px;
padding-top: 10px;
padding-bottom: 10px;
font-weight: bold;
border-radius: 3px;
margin-top: 7px;
}
.shopping-title {
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
font-size: 25px;
width: 400px;
text-align: center;
}
.shopping-name {
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
width: 400px;
text-align: center;
}
.shopping-link {
font-family: Arial, Helvetica, sans-serif;
width: 400px;
text-align: center;
color: blue;
cursor: pointer;
display: block;
}
.shopping-link:hover {
text-decoration: underline;
}
</style>
<div>
<p class="tahoma">This is Tahoma Font</p>
</div>
<div>
<p class="sales">Biggest Deals of the Year!</p>
<p class="sales-end">Sales end Tuesday</p>
</div>
<div>
<p class="verdana-title">HTML CSS Course</p>
<p class="verdana-name">Begginer to Pro</p>
<p class="verdana-description">In this course, we'll learn the skills you need to become a developer.</p>
<button>Get Started</button>
</div>
<div>
<p class="shopping-title">Shopping for your business?</p>
<p class="shopping-name">See how Apple at work can help.</p>
<a class="shopping-link"> Shop now > </a>
</div>
</body>
</html>