-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
74 lines (74 loc) · 2.29 KB
/
example.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
<!DOCTYPE html>
<html>
<body>
<h1 style="text-align: center">The effect of handwritingfy</h1>
<div
style="
max-width: 600px;
display: flex;
flex-flow: row wrap;
margin: 0 auto;
"
>
<div style="width: 100%">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborum.
</p>
</div>
<svg width="240" height="180">
<rect
x="50"
y="20"
rx="20"
ry="20"
width="150"
height="150"
style="fill: red; stroke: black; stroke-width: 5; opacity: 0.5"
/>
Sorry, your browser does not support inline SVG.
</svg>
<svg height="140" width="200">
<ellipse
cx="100"
cy="80"
rx="80"
ry="50"
style="fill: yellow; stroke: purple; stroke-width: 2"
/>
Sorry, your browser does not support inline SVG.
</svg>
<svg height="200" width="200">
<polyline
points="20,20 40,25 60,40 80,120 120,140 200,180"
style="fill: none; stroke: black; stroke-width: 3"
/>
Sorry, your browser does not support inline SVG.
</svg>
<svg height="180" width="180">
<polyline
points="0,40 40,40 40,80 80,80 80,120 120,120 120,160"
style="fill: white; stroke: red; stroke-width: 4"
/>
Sorry, your browser does not support inline SVG.
</svg>
<svg height="100" width="100">
<circle
cx="50"
cy="50"
r="40"
stroke="black"
stroke-width="3"
fill="red"
/>
Sorry, your browser does not support inline SVG.
</svg>
</div>
<script src="https://cdn.jsdelivr.net/gh/TristanWYL/[email protected]/dist/handwritingfy.script.iife.min.js"></script>
</body>
</html>