-
Notifications
You must be signed in to change notification settings - Fork 1
/
temp.html
executable file
·63 lines (56 loc) · 987 Bytes
/
temp.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
<!DOCTYPE html>
<html>
<html>
<style>
body {
font-family: sans-serif;
margin-top: 0in;
margin-bottom: 0;
margin-left: 0.06in;
margin-right: 0;
width: 261px;
}
.badge-name1 {
position: absolute;
top: 10px;
left: 7px;
font-size: 21px;
}
.badge-name2 {
position: absolute;
top: 37px;
left: 7px;
font-size: 19px;
}
.registration-number {
position: absolute;
top: 60px;
left: 7px;
font-size: 14px;
text-align: left;
}
.registration-level {
position: absolute;
top: 60px;
left: 0px;
font-size: 16px;
text-align: center;
width: 261px;
}
.minor {
position: absolute;
top: 60px;
left: 0px;
width: 261px;
font-size: 14px;
text-align: right;
}
</style>
<body>
<div class="badge-name1">Foxy McFoxerson</div>
<div class="badge-name2">Reilly Grant</div>
<div class="registration-number">1234</div>
<div class="registration-level">Super-Sponsor</div>
<div class="minor">Minor</div>
</body>
</html>