-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
42 lines (39 loc) · 833 Bytes
/
test.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
<html>
<head>
<style>
* {
font-family: Arial;
text-align: center;
}
div {
width: 500px;
}
h1 {
text-align: center;
}
p + p {
font-size: 28px;
}
p > span {
font-size: 15px;
display: block;
}
</style>
</head>
<body>
<div>
<h1>It's a wrap!</h1>
<p>
Danke für deinen Geburtstagsgruß. Wenn du mit deiner Performance unzufrieden bist kannst du
es gerne noch einmal probieren. Ansonsten drücke auf "Fertig" und schau dir dein Video und
die der Anderen an.
</p>
<p>
Scanne dazu einfach den QR Code
<span>oder unter: bit.do/eWpMU</span>
</p>
<button>Fertig</button>
<button>Nochmal</button>
</div>
</body>
</html>