-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path05-text.html
More file actions
47 lines (44 loc) · 766 Bytes
/
05-text.html
File metadata and controls
47 lines (44 loc) · 766 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>
HI
</title>
<style>
p {
margin-top: 0px;
font-family: Arial, Helvetica, sans-serif;
}
.h1 {
font-size: 30px;
font-weight: normal;
margin-bottom: 5px;
}
.h11 {
font-size: 15px;
color: gray;
}
.h2 {
color: green;
margin-bottom: 8px;
}
.h3 {
color: gray;
}
.h31 {
color: red;
}
</style>
</head>
<body>
<p class="h1">
1,049.61 <span class="h11">USD</span>
</p>
<p class="h2">
+18.05 (1.75%) today
</p>
<p class="h3">
After hours 1,048.00 <span class="h31">-1.61 (0.15%)</span>
</p>
</body>
</html>