-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandwriting-fonts.html
116 lines (101 loc) · 2.55 KB
/
handwriting-fonts.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta
name="description"
content="Handwriting Font Showcase"
/>
<title>Handwriting Font Showcase</title>
<!-- Google Fonts for Handwriting Styles -->
<link
href="https://fonts.googleapis.com/css2?family=Dancing+Script&family=Indie+Flower&family=Patrick+Hand&family=Satisfy&family=Shadows+Into+Light&display=swap"
rel="stylesheet"
/>
<style>
/* Base Styling */
body {
font-size: 16px;
line-height: 1.5;
background-color: #f9f9f9;
color: #333;
font-family: Arial, sans-serif;
padding: 2rem;
}
h1,
h2 {
text-align: center;
}
.font-example {
margin-bottom: 2rem;
padding: 1rem;
background: #fff;
border: 1px solid #ddd;
border-radius: 8px;
}
.font-name {
font-weight: bold;
margin-bottom: 0.5rem;
}
/* Handwriting Fonts */
.dancing-script {
font-family: "Dancing Script", cursive;
}
.indie-flower {
font-family: "Indie Flower", cursive;
}
.patrick-hand {
font-family: "Patrick Hand", cursive;
}
.satisfy {
font-family: "Satisfy", cursive;
}
.shadows-into-light {
font-family: "Shadows Into Light", cursive;
}
</style>
</head>
<body>
<h1>Handwriting Font Showcase</h1>
<h2>Explore Fonts That Mimic Handwriting</h2>
<div class="font-example dancing-script">
<p class="font-name">Dancing Script</p>
<p>
The quick brown fox jumps over the lazy dog. This font gives a casual,
elegant feel with flowing, cursive strokes.
</p>
</div>
<div class="font-example indie-flower">
<p class="font-name">Indie Flower</p>
<p>
The quick brown fox jumps over the lazy dog. Indie Flower resembles
playful, handwritten notes.
</p>
</div>
<div class="font-example patrick-hand">
<p class="font-name">Patrick Hand</p>
<p>
The quick brown fox jumps over the lazy dog. This font feels like
natural handwriting, great for informal use.
</p>
</div>
<div class="font-example satisfy">
<p class="font-name">Satisfy</p>
<p>
The quick brown fox jumps over the lazy dog. Satisfy has smooth, flowing
cursive strokes with a relaxed style.
</p>
</div>
<div class="font-example shadows-into-light">
<p class="font-name">Shadows Into Light</p>
<p>
The quick brown fox jumps over the lazy dog. Shadows Into Light is clean
and easy to read while maintaining a handwritten charm.
</p>
</div>
</body>
</html>