-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtemp.txt
1863 lines (1784 loc) · 75.5 KB
/
temp.txt
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<script lang="ts">
import FaviconJS from "../favicon.js/favicon.mjs";
// /** @type {HTMLCanvasElement} */
// // Setup canvas
let canvas = <HTMLCanvasElement> document.getElementById("canvas");
canvas.width = 128;
canvas.height = 128;
const context = canvas.getContext("2d");
// Draw background
context.fillStyle = "#d85537";
context.fillRect(0, 0, canvas.width, canvas.height);
// Draw text
context.fillStyle = "#FFFFFF";
context.font = "100px Helvetica";
context.textBaseline = "middle";
context.textAlign = "center";
const x = canvas.width / 2;
const y = canvas.height / 2;
context.fillText("F", x, y);
// Create favicon.ico dataurl
const favicon = new FaviconJS(canvas);
const dataurl = favicon.ico([16, 32, 48]);
// Activate the download button
const download = document.getElementById("download") as HTMLAnchorElement | null;
download.href = dataurl;
download.setAttribute("download", "favicon.ico");
</script>
<main>
<section class="banner section">
<div class="banner_div">
<h2 class="banner_header">FAVICON GENERATOR / GENERATE FROM TEXT</h2>
<p class="banner_para">
Quickly generate your favicon from text by selecting the text, fonts,
and colors. Download your favicon in the most up to date formats.
</p>
</div>
</section>
<section class="preview section">
<div class="previewing flexed">
<span class="preview_text">Preview</span>
<img
src="/favicon.ico"
alt="Preview1 for favicon"
class="preview_img preview_img1"
/>
<img
src="/favicon.ico"
alt="Preview2 for favicon"
class="preview_img preview_img2"
/>
<img
src="/favicon.ico"
alt="Preview3 for favicon"
class="preview_img preview_img3"
/>
</div>
<div class="buttons flexed">
<a href="https://twitter.com/" class="white_button"
><i class="icon fa-brands fa-twitter" /> Twitter</a
>
<a href="https://google.com/" class="blue_button"
><i class="icon fa-solid fa-download" /> Download</a
>
</div>
</section>
<section class="generator section">
<div class="box">
<h2 class="generator_head">Generate From Text</h2>
<div class="flexbox_generator">
<div class="subbox boxtext">
<div class="control">
<label for="text" class="label">Text</label>
<input id="text" type="text" placeholder="Text" class="input" />
</div>
<div class="control">
<label for="background" class="label">Background</label>
<select id="background">
<option value="square">Square</option>
<option value="circle">Circle</option>
<option value="rounded">Rounded</option>
</select>
</div>
<div class="control">
<!--:// Replacint part -->
<label for="font-family" class="label"
>Font Family (view all on Google Fonts)</label
>
<select id="font-family" style="width: 100%;">
<option> ABeeZee </option><option> Abel </option><option>
Abhaya Libre
</option><option> Aboreto </option><option>
Abril Fatface
</option><option> Abyssinica SIL </option><option>
Aclonica
</option>
</select>
<!--:// Replacint part -->
</div>
</div>
<div class="subbox box_font_col">Font Color</div>
<div class="subbox box_bg_col">Background Color</div>
<canvas id="canvas" width="300" height="200" />
<a id="download" href="#">Download</a>
</div>
</div>
</section>
<section class="install section">
<div class="box">
<h2 class="generator_head">Installation</h2>
<div class="install_para">
First, use the download button to download the files listed below. Place
the files in the root directory of your website.
<ul class="install_list">
<li>android-chrome-192x192.png</li>
<li>android-chrome-512x512.png</li>
<li>apple-touch-icon.png</li>
<li>favicon-16x16.png</li>
<li>favicon-32x32.png</li>
<li>favicon.ico</li>
<li>site.webmanifest</li>
</ul>
Next, copy the following link tags and paste them into the head of your
HTML.
<pre class="html_codes">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</pre>
<a href="https://google.com/" class="blue_button"
><i class="icon fa-regular fa-clipboard" /> Copy</a
>
</div>
</div>
</section>
<section class="faq section">
<div class="box">
<h3 class="faq_head">Why favicon.io?</h3>
<p class="faq_para">
Whether you want to generate a favicon from text, from an existing
image, or from an emoji we've got you covered. The favicon generator is
completely free and extremely easy to use. The generated favicon will
work for all browsers and multiple platforms.
</p>
<h3 class="faq_head">Getting started with the favicon generator</h3>
<p class="faq_para">
The tool above will allow you to generate a favicon from text. Start by
choosing one to two letters for the favicon generator. Since the favicon
generator outputs very small images it's important to use few characters
for maximum legibility. Once cool feature with this favicon generator is
that you can copy and paste both unicode characters and emojis into the
text box. This is useful for when an emoji isn't listed on the emoji
favicon page. <a href="https://www.google.com" class="faq_link"
>Here's an example keeping it 💯</a
>
</p>
<h3 class="faq_head">Making the background simple</h3>
<p class="faq_para">
Next, select the shape of the background. There are three simple shapes
available: square, circle, and rounded. These are the most common shapes
used to generate a favicon. You can see examples of these shapes with <a
href="https://www.google.com"
class="faq_link">ProductHunt</a
>, <a href="https://www.google.com" class="faq_link">IndieHackers</a>,
and <a href="https://www.google.com" class="faq_link">HackerNews</a>.
</p>
<h3 class="faq_head">Selecting the font for your favicon</h3>
<p class="faq_para">
The favicon generator uses <a
href="https://www.google.com"
class="faq_link">Google Fonts</a
> which has 800+ fonts available. This is useful to match the font used on
your own website. In the future there will be a dedicated font page to help
you select your font. It will have filters for languages, styles, and commonly
used fonts. You can edit the font size once you've selected your font. Try
to take up as much space as possible.
</p>
<h3 class="faq_head">Tailoring the colors</h3>
<p class="faq_para">
The last step is to select the colors. If you have the HEX values of the
colors you want then you can just enter them into the input box.
Otherwise you can use some of the colors that we suggest using the color
picker below each input box. One cool feature is that you can use
transparent backgrounds. Simply type "transparent" into the background
color box. <a href="https://www.google.com" class="faq_link"
>Here's an example of a favicon generated with a transparent
background.</a
>
</p>
</div>
</section>
</main>
<style>
#canvas {
width: 64px;
height: 64px;
border: 1px solid red;
}
.section {
padding: 3% 10%;
}
.banner {
background: black;
color: #fff;
}
.banner_header {
color: #b5b5b5;
/* letter-spacing: .001rem; */
letter-spacing: -0.07ch;
font-weight: bold;
font-size: 1.3rem;
}
.banner_para {
padding-top: 30px;
font-size: 1.9rem;
font-weight: bold;
max-width: 60%;
line-height: 130%;
}
.flexed {
display: flex;
align-items: center;
justify-content: center;
}
.preview {
padding: 2% 10%;
border-bottom: 1px solid lightgray;
display: flex;
justify-content: space-between;
align-items: center;
}
.preview_text {
font-weight: bold;
color: #363636;
margin-right: 8px;
}
.preview_img {
margin-left: 10px;
}
.preview_img1 {
width: 48px;
}
.preview_img2 {
width: 32px;
}
.preview_img3 {
width: 16px;
}
.icon {
margin-right: 5px;
}
.white_button {
background: white;
color: #363636;
font-weight: bold;
border: 1px solid lightgray;
border-radius: 6px;
padding: 8px 15px;
text-decoration: none;
margin-right: 10px;
}
.white_button:hover {
border-color: slategray;
}
.blue_button {
text-decoration: none;
font-weight: bold;
padding: 9px 15px;
border-radius: 6px;
background: #3188be;
color: white;
}
.blue_button:hover {
background: #3488ce;
}
.box {
border-radius: 12px;
padding: 20px 40px;
/* border: 1px solid slategray; */
box-shadow: 2px 12px 50px rgba(145, 147, 148, 0.219);
}
.generator_head {
padding-top: 20px;
padding-bottom: 20px;
font-size: 1.8rem;
font-weight: bold;
color: #363636;
}
.flexbox_generator {
display: flex;
justify-content: space-between;
}
.subbox {
border: 1px solid gray;
width: 30%;
}
.install .box {
max-width: 65%;
color: #4a4a4a;
font-size: 0.95rem;
}
.install_list {
margin: 10px 20px;
line-height: 1.9rem;
}
.html_codes {
margin-top: 10px;
margin-bottom: 20px;
background: #ededed;
border-radius: 12px;
padding: 15px;
}
.install .blue_button {
display: inline-block;
margin-bottom: 10px;
}
.faq .box {
max-width: 65%;
color: #4a4a4a;
font-size: 0.95rem;
padding-bottom: 30px;
}
.faq_head {
padding-top: 32px;
padding-bottom: 8px;
font-size: 1.5rem;
font-weight: bold;
color: #4a4a4a;
}
.faq_para {
font-size: 0.93rem;
color: #4a4a4a;
}
.faq_link {
text-decoration: none;
color: #485fc7;
}
.faq_link:hover {
color: #001b92;
}
</style>
<label for="font-family" class="label"
>Font Family (view all on Google Fonts)</label
>
<select id="font-family" style="width: 100%;">
<option> ABeeZee </option><option> Abel </option><option>
Abhaya Libre
</option><option> Aboreto </option><option>
Abril Fatface
</option><option> Abyssinica SIL </option><option>
Aclonica
</option><option> Acme </option><option> Actor </option><option>
Adamina
</option><option> Advent Pro </option><option>
Aguafina Script
</option><option> Akaya Kanadaka </option><option>
Akaya Telivigala
</option><option> Akronim </option><option>
Akshar
</option><option> Aladin </option><option> Alata </option><option>
Alatsi
</option><option> Albert Sans </option><option>
Aldrich
</option><option> Alef </option><option> Alegreya </option><option
>
Alegreya SC
</option><option> Alegreya Sans </option><option>
Alegreya Sans SC
</option><option> Aleo </option><option>
Alex Brush
</option><option> Alexandria </option><option>
Alfa Slab One
</option><option> Alice </option><option> Alike </option><option>
Alike Angular
</option><option> Alkalami </option><option>
Allan
</option><option> Allerta </option><option>
Allerta Stencil
</option><option> Allison </option><option>
Allura
</option><option> Almarai </option><option>
Almendra
</option><option> Almendra Display </option><option>
Almendra SC
</option><option> Alumni Sans </option><option>
Alumni Sans Collegiate One
</option><option> Alumni Sans Inline One </option><option>
Alumni Sans Pinstripe
</option><option> Amarante </option><option>
Amaranth
</option><option> Amatic SC </option><option>
Amethysta
</option><option> Amiko </option><option> Amiri </option><option>
Amiri Quran
</option><option> Amita </option><option> Anaheim </option><option
>
Andada Pro
</option><option> Andika </option><option>
Anek Bangla
</option><option> Anek Devanagari </option><option>
Anek Gujarati
</option><option> Anek Gurmukhi </option><option>
Anek Kannada
</option><option> Anek Latin </option><option>
Anek Malayalam
</option><option> Anek Odia </option><option>
Anek Tamil
</option><option> Anek Telugu </option><option>
Angkor
</option><option> Annie Use Your Telescope </option><option>
Anonymous Pro
</option><option> Antic </option><option>
Antic Didone
</option><option> Antic Slab </option><option>
Anton
</option><option> Antonio </option><option>
Anybody
</option><option> Arapey </option><option>
Arbutus
</option><option> Arbutus Slab </option><option>
Architects Daughter
</option><option> Archivo </option><option>
Archivo Black
</option><option> Archivo Narrow </option><option>
Are You Serious
</option><option> Aref Ruqaa </option><option>
Aref Ruqaa Ink
</option><option> Arima </option><option>
Arima Madurai
</option><option> Arimo </option><option>
Arizonia
</option><option> Armata </option><option>
Arsenal
</option><option> Artifika </option><option> Arvo </option><option
>
Arya
</option><option> Asap </option><option>
Asap Condensed
</option><option> Asar </option><option> Asset </option><option>
Assistant
</option><option> Astloch </option><option> Asul </option><option>
Athiti
</option><option> Atkinson Hyperlegible </option><option>
Atma
</option><option> Atomic Age </option><option>
Aubrey
</option><option> Audiowide </option><option>
Autour One
</option><option> Average </option><option>
Average Sans
</option><option> Averia Gruesa Libre </option><option>
Averia Libre
</option><option> Averia Sans Libre </option><option>
Averia Serif Libre
</option><option> Azeret Mono </option><option>
B612
</option><option> B612 Mono </option><option>
BIZ UDGothic
</option><option> BIZ UDMincho </option><option>
BIZ UDPGothic
</option><option> BIZ UDPMincho </option><option>
Babylonica
</option><option> Bad Script </option><option>
Bahiana
</option><option> Bahianita </option><option>
Bai Jamjuree
</option><option> Bakbak One </option><option>
Ballet
</option><option> Baloo 2 </option><option>
Baloo Bhai 2
</option><option> Baloo Bhaijaan 2 </option><option>
Baloo Bhaina 2
</option><option> Baloo Chettan 2 </option><option>
Baloo Da 2
</option><option> Baloo Paaji 2 </option><option>
Baloo Tamma 2
</option><option> Baloo Tammudu 2 </option><option>
Baloo Thambi 2
</option><option> Balsamiq Sans </option><option>
Balthazar
</option><option> Bangers </option><option>
Barlow
</option><option> Barlow Condensed </option><option>
Barlow Semi Condensed
</option><option> Barriecito </option><option>
Barrio
</option><option> Basic </option><option>
Baskervville
</option><option> Battambang </option><option>
Baumans
</option><option> Bayon </option><option>
Be Vietnam Pro
</option><option> Beau Rivage </option><option>
Bebas Neue
</option><option> Belgrano </option><option>
Bellefair
</option><option> Belleza </option><option>
Bellota
</option><option> Bellota Text </option><option>
BenchNine
</option><option> Benne </option><option> Bentham </option><option
>
Berkshire Swash
</option><option> Besley </option><option>
Beth Ellen
</option><option> Bevan </option><option>
BhuTuka Expanded One
</option><option> Big Shoulders Display </option><option>
Big Shoulders Inline Display
</option><option> Big Shoulders Inline Text </option><option>
Big Shoulders Stencil Display
</option><option> Big Shoulders Stencil Text </option><option>
Big Shoulders Text
</option><option> Bigelow Rules </option><option>
Bigshot One
</option><option> Bilbo </option><option>
Bilbo Swash Caps
</option><option> BioRhyme </option><option>
BioRhyme Expanded
</option><option> Birthstone </option><option>
Birthstone Bounce
</option><option> Biryani </option><option>
Bitter
</option><option> Black And White Picture </option><option>
Black Han Sans
</option><option> Black Ops One </option><option>
Blaka
</option><option> Blaka Hollow </option><option>
Blaka Ink
</option><option> Blinker </option><option>
Bodoni Moda
</option><option> Bokor </option><option>
Bona Nova
</option><option> Bonbon </option><option>
Bonheur Royale
</option><option> Boogaloo </option><option>
Bowlby One
</option><option> Bowlby One SC </option><option>
Brawler
</option><option> Bree Serif </option><option>
Brygada 1918
</option><option> Bubblegum Sans </option><option>
Bubbler One
</option><option> Buda </option><option> Buenard </option><option>
Bungee
</option><option> Bungee Hairline </option><option>
Bungee Inline
</option><option> Bungee Outline </option><option>
Bungee Shade
</option><option> Bungee Spice </option><option>
Butcherman
</option><option> Butterfly Kids </option><option>
Cabin
</option><option> Cabin Condensed </option><option>
Cabin Sketch
</option><option> Caesar Dressing </option><option>
Cagliostro
</option><option> Cairo </option><option>
Cairo Play
</option><option> Caladea </option><option>
Calistoga
</option><option> Calligraffitti </option><option>
Cambay
</option><option> Cambo </option><option> Candal </option><option>
Cantarell
</option><option> Cantata One </option><option>
Cantora One
</option><option> Capriola </option><option>
Caramel
</option><option> Carattere </option><option>
Cardo
</option><option> Carme </option><option>
Carrois Gothic
</option><option> Carrois Gothic SC </option><option>
Carter One
</option><option> Castoro </option><option>
Catamaran
</option><option> Caudex </option><option> Caveat </option><option
>
Caveat Brush
</option><option> Cedarville Cursive </option><option>
Ceviche One
</option><option> Chakra Petch </option><option>
Changa
</option><option> Changa One </option><option>
Chango
</option><option> Charis SIL </option><option>
Charm
</option><option> Charmonman </option><option>
Chathura
</option><option> Chau Philomene One </option><option>
Chela One
</option><option> Chelsea Market </option><option>
Chenla
</option><option> Cherish </option><option>
Cherry Cream Soda
</option><option> Cherry Swash </option><option>
Chewy
</option><option> Chicle </option><option>
Chilanka
</option><option> Chivo </option><option>
Chivo Mono
</option><option> Chonburi </option><option>
Cinzel
</option><option> Cinzel Decorative </option><option>
Clicker Script
</option><option> Coda </option><option>
Coda Caption
</option><option> Codystar </option><option>
Coiny
</option><option> Combo </option><option>
Comfortaa
</option><option> Comforter </option><option>
Comforter Brush
</option><option> Comic Neue </option><option>
Coming Soon
</option><option> Commissioner </option><option>
Concert One
</option><option> Condiment </option><option>
Content
</option><option> Contrail One </option><option>
Convergence
</option><option> Cookie </option><option> Copse </option><option>
Corben
</option><option> Corinthia </option><option>
Cormorant
</option><option> Cormorant Garamond </option><option>
Cormorant Infant
</option><option> Cormorant SC </option><option>
Cormorant Unicase
</option><option> Cormorant Upright </option><option>
Courgette
</option><option> Courier Prime </option><option>
Cousine
</option><option> Coustard </option><option>
Covered By Your Grace
</option><option> Crafty Girls </option><option>
Creepster
</option><option> Crete Round </option><option>
Crimson Pro
</option><option> Crimson Text </option><option>
Croissant One
</option><option> Crushed </option><option>
Cuprum
</option><option> Cute Font </option><option>
Cutive
</option><option> Cutive Mono </option><option>
DM Mono
</option><option> DM Sans </option><option>
DM Serif Display
</option><option> DM Serif Text </option><option>
Damion
</option><option> Dancing Script </option><option>
Dangrek
</option><option> Darker Grotesque </option><option>
David Libre
</option><option> Dawning of a New Day </option><option>
Days One
</option><option> Dekko </option><option>
Dela Gothic One
</option><option> Delius </option><option>
Delius Swash Caps
</option><option> Delius Unicase </option><option>
Della Respira
</option><option> Denk One </option><option>
Devonshire
</option><option> Dhurjati </option><option>
Didact Gothic
</option><option> Diplomata </option><option>
Diplomata SC
</option><option> Do Hyeon </option><option>
Dokdo
</option><option> Domine </option><option>
Donegal One
</option><option> Dongle </option><option>
Doppio One
</option><option> Dorsa </option><option> Dosis </option><option>
DotGothic16
</option><option> Dr Sugiyama </option><option>
Duru Sans
</option><option> DynaPuff </option><option>
Dynalight
</option><option> EB Garamond </option><option>
Eagle Lake
</option><option> East Sea Dokdo </option><option>
Eater
</option><option> Economica </option><option>
Eczar
</option><option> Edu NSW ACT Foundation </option><option>
Edu QLD Beginner
</option><option> Edu SA Beginner </option><option>
Edu TAS Beginner
</option><option> Edu VIC WA NT Beginner </option><option>
El Messiri
</option><option> Electrolize </option><option>
Elsie
</option><option> Elsie Swash Caps </option><option>
Emblema One
</option><option> Emilys Candy </option><option>
Encode Sans
</option><option> Encode Sans Condensed </option><option>
Encode Sans Expanded
</option><option> Encode Sans SC </option><option>
Encode Sans Semi Condensed
</option><option> Encode Sans Semi Expanded </option><option>
Engagement
</option><option> Englebert </option><option>
Enriqueta
</option><option> Ephesis </option><option>
Epilogue
</option><option> Erica One </option><option>
Esteban
</option><option> Estonia </option><option>
Euphoria Script
</option><option> Ewert </option><option> Exo </option><option>
Exo 2
</option><option> Expletus Sans </option><option>
Explora
</option><option> Fahkwang </option><option>
Familjen Grotesk
</option><option> Fanwood Text </option><option>
Farro
</option><option> Farsan </option><option>
Fascinate
</option><option> Fascinate Inline </option><option>
Faster One
</option><option> Fasthand </option><option>
Fauna One
</option><option> Faustina </option><option>
Federant
</option><option> Federo </option><option> Felipa </option><option
>
Fenix
</option><option> Festive </option><option>
Figtree
</option><option> Finger Paint </option><option>
Finlandica
</option><option> Fira Code </option><option>
Fira Mono
</option><option> Fira Sans </option><option>
Fira Sans Condensed
</option><option> Fira Sans Extra Condensed </option><option>
Fjalla One
</option><option> Fjord One </option><option>
Flamenco
</option><option> Flavors </option><option>
Fleur De Leah
</option><option> Flow Block </option><option>
Flow Circular
</option><option> Flow Rounded </option><option>
Fondamento
</option><option> Fontdiner Swanky </option><option>
Forum
</option><option> Fragment Mono </option><option>
Francois One
</option><option> Frank Ruhl Libre </option><option>
Fraunces
</option><option> Freckle Face </option><option>
Fredericka the Great
</option><option> Fredoka </option><option>
Fredoka One
</option><option> Freehand </option><option>
Fresca
</option><option> Frijole </option><option>
Fruktur
</option><option> Fugaz One </option><option>
Fuggles
</option><option> Fuzzy Bubbles </option><option>
GFS Didot
</option><option> GFS Neohellenic </option><option>
Gabriela
</option><option> Gaegu </option><option> Gafata </option><option>
Galada
</option><option> Galdeano </option><option>
Galindo
</option><option> Gamja Flower </option><option>
Gantari
</option><option> Gayathri </option><option>
Gelasio
</option><option> Gemunu Libre </option><option>
Genos
</option><option> Gentium Book Basic </option><option>
Gentium Book Plus
</option><option> Gentium Plus </option><option>
Geo
</option><option> Georama </option><option>
Geostar
</option><option> Geostar Fill </option><option>
Germania One
</option><option> Gideon Roman </option><option>
Gidugu
</option><option> Gilda Display </option><option>
Girassol
</option><option> Give You Glory </option><option>
Glass Antiqua
</option><option> Glegoo </option><option>
Gloria Hallelujah
</option><option> Glory </option><option> Gluten </option><option>
Goblin One
</option><option> Gochi Hand </option><option>
Goldman
</option><option> Gorditas </option><option>
Gothic A1
</option><option> Gotu </option><option>
Goudy Bookletter 1911
</option><option> Gowun Batang </option><option>
Gowun Dodum
</option><option> Graduate </option><option>
Grand Hotel
</option><option> Grandstander </option><option>
Grape Nuts
</option><option> Gravitas One </option><option>
Great Vibes
</option><option> Grechen Fuemen </option><option>
Grenze
</option><option> Grenze Gotisch </option><option>
Grey Qo
</option><option> Griffy </option><option> Gruppo </option><option
>
Gudea
</option><option> Gugi </option><option> Gulzar </option><option>
Gupter
</option><option> Gurajada </option><option>
Gwendolyn
</option><option> Habibi </option><option>
Hachi Maru Pop
</option><option> Hahmlet </option><option>
Halant
</option><option> Hammersmith One </option><option>
Hanalei
</option><option> Hanalei Fill </option><option>
Handlee
</option><option> Hanken Grotesk </option><option>
Hanuman
</option><option> Happy Monkey </option><option>
Harmattan
</option><option> Headland One </option><option>
Heebo
</option><option> Henny Penny </option><option>
Hepta Slab
</option><option> Herr Von Muellerhoff </option><option>
Hi Melody
</option><option> Hina Mincho </option><option>
Hind
</option><option> Hind Guntur </option><option>
Hind Madurai
</option><option> Hind Siliguri </option><option>
Hind Vadodara
</option><option> Holtwood One SC </option><option>
Homemade Apple
</option><option> Homenaje </option><option>
Hubballi
</option><option> Hurricane </option><option>
IBM Plex Mono
</option><option> IBM Plex Sans </option><option>
IBM Plex Sans Arabic
</option><option> IBM Plex Sans Condensed </option><option>
IBM Plex Sans Devanagari
</option><option> IBM Plex Sans Hebrew </option><option>
IBM Plex Sans JP
</option><option> IBM Plex Sans KR </option><option>
IBM Plex Sans Thai
</option><option> IBM Plex Sans Thai Looped </option><option>
IBM Plex Serif
</option><option> IM Fell DW Pica </option><option>
IM Fell DW Pica SC
</option><option> IM Fell Double Pica </option><option>
IM Fell Double Pica SC
</option><option> IM Fell English </option><option>
IM Fell English SC
</option><option> IM Fell French Canon </option><option>
IM Fell French Canon SC
</option><option> IM Fell Great Primer </option><option>
IM Fell Great Primer SC
</option><option> Ibarra Real Nova </option><option>
Iceberg
</option><option> Iceland </option><option> Imbue </option><option
>
Imperial Script
</option><option> Imprima </option><option>
Inconsolata
</option><option> Inder </option><option>
Indie Flower
</option><option> Ingrid Darling </option><option>
Inika
</option><option> Inknut Antiqua </option><option>
Inria Sans
</option><option> Inria Serif </option><option>
Inspiration
</option><option> Inter </option><option>
Inter Tight
</option><option> Irish Grover </option><option>
Island Moments
</option><option> Istok Web </option><option>
Italiana
</option><option> Italianno </option><option>
Itim
</option><option> Jacques Francois </option><option>
Jacques Francois Shadow
</option><option> Jaldi </option><option>
JetBrains Mono
</option><option> Jim Nightshade </option><option>
Joan
</option><option> Jockey One </option><option>
Jolly Lodger
</option><option> Jomhuria </option><option>
Jomolhari
</option><option> Josefin Sans </option><option>
Josefin Slab
</option><option> Jost </option><option> Joti One </option><option
>
Jua
</option><option> Judson </option><option> Julee </option><option>
Julius Sans One
</option><option> Junge </option><option> Jura </option><option>
Just Another Hand
</option><option> Just Me Again Down Here </option><option>
K2D
</option><option> Kadwa </option><option>
Kaisei Decol
</option><option> Kaisei HarunoUmi </option><option>