generated from im-amy-lew/bootstrap-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.html
1518 lines (1467 loc) · 64.6 KB
/
library.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Additional meta tags -->
<meta name="author" content="Amy L.">
<meta name="description" content="Sacramento Weavers' and Spinners' Guild has a large collection of books, pamphlets, magazines, and equipment on subjects related to weaving, spinning, basketry, and dyeing which may be checked out for member use.">
<meta name="keywords" content="american, andean, ashford, backstrap, bands, baskets, basketry, bead, beaded, beam, blankets, bobbins, books, braids, card, clemes, cloth, clothing, collapse, color, corkscrew, crackle, design, designer, double, doubleweave, drafting, dvds, dye, dyeing, dyer, felting, fiber, finishing, guild, handbook, handwoven, harness, heddle, huck, inkle, ikat, japanese, jewelry, kromski, kumihimo, lace, leclerc, linen, lithuanian, looms, magazines, marudai, lichen, native, natural, nature, navajo, needle, norwegian, overshot, paddle, patterned, patterns, pebble, plain, plant, processing, ply, rag, reeds, rep, rugs, sacramento, scarves, schacht, sett, shadow, shafts, shed, shibori, source, spindle, spinner, spinning, split, sprang, structo, structures, summer, supplementary, swedish, swsg, tablet, tapestry, tartan, techniques, tools, twill, vav, vegetable, warp, warping, weaver, weaving, weft, wheels, winter, wool">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Work+Sans:wght@400&display=swap">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="./img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./img/favicon-16x16.png">
<link rel="manifest" href="./img/site.webmanifest">
<!-- Custom CSS styles -->
<link rel="stylesheet" href="./css/styles.css">
<!-- Title -->
<title>Sacramento Weavers' and Spinners' Guild | SWSG | Library</title>
</head>
<body>
<header class="position-sticky top-0 start-0">
<nav class="navbar navbar-expand-lg sticky-top navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img src="./img/icon-light.png" alt="Sacramento Weavers' and Spinners' Guild logo" class="icon">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span>
<i class="fa-solid fa-bars"></i>
</span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="library.html" active aria-current="page">Library</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main class="container-fluid">
<section class="container p-3">
<h1 class="heading_1 text-center fw-bold">Library</h1>
<p class="mb-0">
SWSG has a large collection of books, pamphlets, magazines, and equipment on subjects related to weaving, spinning, basketry, and dyeing which may be checked out for member use. A list of guild holdings is available at the library table at each meeting, where the guild librarian displays the DVD collection and current magazines for perusal or one-month duration checkout. Books, older magazines, and equipment may be requested and will be available for checkout at the next guild meeting.
</p>
</section>
<div class="page_divider container"></div>
<!-- Books, DVDs, and Magazines -->
<section class="container p-3">
<h2 class="heading_2 fw-bold">Books, DVDs, and Magazines</h2>
<p>
Books are available from <a href="mailto:[email protected]" class="link_1">Joan van Velsor</a>.
</p>
<p>
DVDs are available from <a href="mailto:[email protected]" class="link_1">Carol Miller</a>.
</p>
<p>
Older magazines are available from <a href="mailto:[email protected]" class="link_1">Cheryl Sutherland</a>.
</p>
<div class="accordion accordion-flush" id="accordion_media">
<!-- Basketry -->
<div class="accordion-item">
<h3 class="accordion-header" id="media_heading_1">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#media_collapse_1" aria-expanded="false" aria-controls="media_collapse_1">
Basketry
</button>
</h3>
<div id="media_collapse_1" class="accordion-collapse collapse" aria-labelledby="media_heading_1" data-bs-parent="#accordion_media">
<div class="accordion-body">
<table class="table">
<thead class="accent_bg_2 light align-middle">
<tr>
<th scope="col" class="col">Title</th>
<th scope="col" class="col-2 col-md-4">Author</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Pomo Basketry</th>
<td>Allen, Elise Comanche</td>
</tr>
<tr>
<th scope="row">Splint Woven Basketry</th>
<td>Daugherty, Robin Taylor</td>
</tr>
<tr>
<th scope="row">The Techniques of Basketry</th>
<td>Harvey, Virginia L.</td>
</tr>
<tr>
<th scope="row">Mixed Metal Jewelry Workshop</th>
<td>Heffman­sperger, Mary</td>
</tr>
<tr>
<th scope="row">Wrap, Stitch, Fold, Rivet</th>
<td>Heffman­sperger, Mary</td>
</tr>
<tr>
<th scope="row">Fabulous Woven Jewelry</th>
<td>Heffman­sperger, Mary</td>
</tr>
<tr>
<th scope="row">Basketry From Nature's Bounty</th>
<td>Jensen, Elizabeth J.</td>
</tr>
<tr>
<th scope="row">How to Weave a Pine Needle Basket</th>
<td>Jolley, Ginger</td>
</tr>
<tr>
<th scope="row">Plaited Basketry: The Woven Form</th>
<td>LaPlantz, Shereen</td>
</tr>
<tr>
<th scope="row">Interlacing: The Elemental Fabric</th>
<td>Larsen, Jack Lenor</td>
</tr>
<tr>
<th scope="row">Pine Needle Baskets</th>
<td>Millikin, Linna Loehr</td>
</tr>
<tr>
<th scope="row">Maori Basketry for Beginners</th>
<td>Pender­grast, Mick</td>
</tr>
<tr>
<th scope="row">Contemporary Basketry</th>
<td>Robinson, Sharon</td>
</tr>
<tr>
<th scope="row">The Craft of Chair Seat Weaving</th>
<td>Sterns, George</td>
</tr>
<tr>
<th scope="row">Weaving With Reeds and Fibers</th>
<td>Tod, Osma Gallinger</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Clothing -->
<div class="accordion-item">
<h3 class="accordion-header" id="media_heading_2">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#media_collapse_2" aria-expanded="false" aria-controls="media_collapse_2">
Clothing
</button>
</h3>
<div id="media_collapse_2" class="accordion-collapse collapse" aria-labelledby="media_heading_2" data-bs-parent="#accordion_media">
<div class="accordion-body">
<table class="table">
<thead class="accent_bg_2 light align-middle">
<tr>
<th scope="col" class="col">Title</th>
<th scope="col" class="col-2 col-md-4">Author</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Handwoven, Tailormade</th>
<td>Alderman, Sharon D.</td>
</tr>
<tr>
<th scope="row">Fashions From the Loom</th>
<td>Beard, Betty J.</td>
</tr>
<tr>
<th scope="row">Beyond the Bog Coat</th>
<td>Halpin, Linda</td>
</tr>
<tr>
<th scope="row">Closures</th>
<td>Lancaster, Daryl</td>
</tr>
<tr>
<th scope="row">Seam and Edge Finishes</th>
<td>Lancaster, Daryl</td>
</tr>
<tr>
<th scope="row">Make Your Own Japanese Clothes</th>
<td>Marshall, John</td>
</tr>
<tr>
<th scope="row">Clothing From the Hands That Weave</th>
<td>Mayer, Anita Luvera </td>
</tr>
<tr>
<th scope="row">Woven to Wear</th>
<td>Murphy, Marilyn</td>
</tr>
<tr>
<th scope="row">Handwoven Designer Patterns Jackets and Blouses 124</th>
<td>Scorgie, Jean</td>
</tr>
<tr>
<th scope="row">Handwoven Designer Patterns, Simple Skirts 122</th>
<td>Scorgie, Jean</td>
</tr>
<tr>
<th scope="row">Handwoven Designer Patterns Overlayers 103 - Weaving
You Can Wear</th>
<td>Scorgie, Jean</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Dyeing / Color -->
<div class="accordion-item">
<h3 class="accordion-header" id="media_heading_3">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#media_collapse_3" aria-expanded="false" aria-controls="media_collapse_3">
Dyeing / Color
</button>
</h3>
<div id="media_collapse_3" class="accordion-collapse collapse" aria-labelledby="media_heading_3" data-bs-parent="#accordion_media">
<div class="accordion-body">
<table class="table">
<thead class="accent_bg_2 light align-middle">
<tr>
<th scope="col" class="col">Title</th>
<th scope="col" class="col-2 col-md-4">Author</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Natural Dyes and Home Dyeing</th>
<td>Adrosko, Rita J.</td>
</tr>
<tr>
<th scope="row">The Surface Designers Handbook</th>
<td>Brackman, Holly</td>
</tr>
<tr>
<th scope="row">Navajo Dyes: Their Preparation and Use </th>
<td>Bryan, Nonobah G.</td>
</tr>
<tr>
<th scope="row">Artful Color, Mindful Knits</th>
<td>Bryant, Laura Militzer</td>
</tr>
<tr>
<th scope="row">Harvesting Color</th>
<td>Burgess, Rebecca</td>
</tr>
<tr>
<th scope="row">Hand Dyeing Yarn and Fleece</th>
<td>Calahan, Gail</td>
</tr>
<tr>
<th scope="row">Lichen Dyes</th>
<td>Casselman, Karen</td>
</tr>
<tr>
<th scope="row">Craft of the Dyer: Color from Plants and Lichens</th>
<td>Casselman, Karen</td>
</tr>
<tr>
<th scope="row">The Dye Pot</th>
<td>Davidson, Mary Frances</td>
</tr>
<tr>
<th scope="row">Wild Color, the Complete Guide to Making and Using
Natural Dyes</th>
<td>Dean, Jenny</td>
</tr>
<tr>
<th scope="row">Nature's Colors</th>
<td>Grae, Ida</td>
</tr>
<tr>
<th scope="row">Natural Dyes from Northwest Plants</th>
<td>Green, Judy</td>
</tr>
<tr>
<th scope="row">Blueprints on Fabric</th>
<td>Hewitt, Barbara</td>
</tr>
<tr>
<th scope="row">The Complete Guide to Natural Dyeing</th>
<td>Lambert, Eva</td>
</tr>
<tr>
<th scope="row">Vegetable Dyeing</th>
<td>Lesch, Alma</td>
</tr>
<tr>
<th scope="row">Salvation Through Soy: Katazonze</th>
<td>Marshall, John</td>
</tr>
<tr>
<th scope="row">Color Works</th>
<td>Menz, Deb</td>
</tr>
<tr>
<th scope="row">The Knitter's Guide to Hand Dyed and Variagated Yarns</th>
<td>Miser, Lorna</td>
</tr>
<tr>
<th scope="row">Teach Yourself Visually Hand Dyeing</th>
<td>Perry, Barbara</td>
</tr>
<tr>
<th scope="row">Lichen</th>
<td>Purvis, William</td>
</tr>
<tr>
<th scope="row">Shibori, Design and Techniques</th>
<td>Southan, Mandy</td>
</tr>
<tr>
<th scope="row">Indigo, Madder and Marigold </th>
<td>Van Stralen, Trudy</td>
</tr>
<tr>
<th scope="row">The New Dyer: With Color Hue Analysis Aide</th>
<td>Vinroot, Sally</td>
</tr>
<tr>
<th scope="row">Fabric Dyeing & Printing</th>
<td>Wells, Kate</td>
</tr>
<tr>
<th scope="row">Blue and Yellow Don't Make Green</th>
<td>Wilcox, Michael</td>
</tr>
<tr>
<th scope="row">Navajo Native Dyes: Their Preparation and Use</th>
<td>Young, Stella</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Felting -->
<div class="accordion-item">
<h3 class="accordion-header" id="media_heading_4">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#media_collapse_4" aria-expanded="false" aria-controls="media_collapse_4">
Felting
</button>
</h3>
<div id="media_collapse_4" class="accordion-collapse collapse" aria-labelledby="media_heading_4" data-bs-parent="#accordion_media">
<div class="accordion-body">
<table class="table">
<thead class="accent_bg_2 light align-middle">
<tr>
<th scope="col" class="col">Title</th>
<th scope="col" class="col-2 col-md-4">Author</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Little Felted Animals</th>
<td>Horvath, Marie-Noelle</td>
</tr>
<tr>
<th scope="row">Felting by Hand</th>
<td>Vickery, Anne Einset</td>
</tr>
<tr>
<th scope="row">Needle Felting, Beginning Guide</th>
<td>Wallis, Susanna</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Native American -->
<div class="accordion-item">
<h3 class="accordion-header" id="media_heading_5">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#media_collapse_5" aria-expanded="false" aria-controls="media_collapse_5">
Native American
</button>
</h3>
<div id="media_collapse_5" class="accordion-collapse collapse" aria-labelledby="media_heading_5" data-bs-parent="#accordion_media">
<div class="accordion-body">
<table class="table">
<thead class="accent_bg_2 light align-middle">
<tr>
<th scope="col" class="col">Title</th>
<th scope="col" class="col-2 col-md-4">Author</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">The Weaver's Pathway</th>
<td>Bennet, Noel</td>
</tr>
<tr>
<th scope="row">Designing With the Wool</th>
<td>Bennet, Noel</td>
</tr>
<tr>
<th scope="row">Working With the Wool</th>
<td>Bennet, Noel</td>
</tr>
<tr>
<th scope="row">Navajo Weaving</th>
<td>Dutton, Bertha P.</td>
</tr>
<tr>
<th scope="row">Indian Blankets and Their Makers</th>
<td>James, George Wharton</td>
</tr>
<tr>
<th scope="row">Weaving a Navajo Blanket</th>
<td>Richards, Ann</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Rugs -->
<div class="accordion-item">
<h3 class="accordion-header" id="media_heading_6">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#media_collapse_6" aria-expanded="false" aria-controls="media_collapse_6">
Rugs
</button>
</h3>
<div id="media_collapse_6" class="accordion-collapse collapse" aria-labelledby="media_heading_6" data-bs-parent="#accordion_media">
<div class="accordion-body">
<table class="table">
<thead class="accent_bg_2 light align-middle">
<tr>
<th scope="col" class="col">Title</th>
<th scope="col" class="col-2 col-md-4">Author</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Weaving Contemporary Rag Rugs</th>
<td>Allen, Heather L.</td>
</tr>
<tr>
<th scope="row">Block Weave Technique</th>
<td>Colling­wood, Jason</td>
</tr>
<tr>
<th scope="row">Rug Weaving Techniques</th>
<td>Colling­wood, Peter</td>
</tr>
<tr>
<th scope="row">The Techniques of Rug Weaving</th>
<td>Colling­wood, Peter</td>
</tr>
<tr>
<th scope="row">From Rags to....A Baker's Dozen Rugs</th>
<td>Hand­weav­ers Guild of
America</td>
</tr>
<tr>
<th scope="row">Favorite Rag Rugs, 45 Inspiring Weave Designs</th>
<td>Ingell, Tina</td>
</tr>
<tr>
<th scope="row">A Rug Weaver's Source Book</th>
<td>Ligon, Linda</td>
</tr>
<tr>
<th scope="row">Rag Rug Handbook</th>
<td>Meany, Janet;<br>Paff, Paula</td>
</tr>
<tr>
<th scope="row">Rug Weaving for Everyone</th>
<td>Tod, Osma Gallinger</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Small Looms -->
<div class="accordion-item">
<h3 class="accordion-header" id="media_heading_7">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#media_collapse_7" aria-expanded="false" aria-controls="media_collapse_7">
Small Looms
</button>
</h3>
<div id="media_collapse_7" class="accordion-collapse collapse" aria-labelledby="media_heading_7" data-bs-parent="#accordion_media">
<div class="accordion-body">
<table class="table">
<thead class="accent_bg_2 light align-middle">
<tr>
<th scope="col" class="col">Title</th>
<th scope="col" class="col-2 col-md-4">Author</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Inkle Weaving</th>
<td>Bress, Helene</td>
</tr>
<tr>
<th scope="row">Beadwork: The Beaded Bag</th>
<td>Campbell, Jean</td>
</tr>
<tr>
<th scope="row">Beginner's Guide to Braiding</th>
<td>Carey, Jacque</td>
</tr>
<tr>
<th scope="row">200 Braids to Twist, Knot, Loop, or Weave</th>
<td>Carey, Jacque</td>
</tr>
<tr>
<th scope="row">The Techniques of Tablet Weaving</th>
<td>Colling­wood, Peter</td>
</tr>
<tr>
<th scope="row">The Techniques of Split Ply Braiding</th>
<td>Colling­wood, Peter</td>
</tr>
<tr>
<th scope="row">The Techniques of Sprang</th>
<td>Colling­wood, Peter</td>
</tr>
<tr>
<th scope="row">Card Weaving</th>
<td>Crocket, Candace</td>
</tr>
<tr>
<th scope="row">Tablet Woven Accents for Designer Fabrics</th>
<td>Dam, Inge</td>
</tr>
<tr>
<th scope="row">Textures and Patterns for Rigid Heddle Looms</th>
<td>Daven­port, Betty Linn</td>
</tr>
<tr>
<th scope="row">The Weavers Inkle Pattern Directory: 400 Warp Faced Weaves</th>
<td>Dixon, Ann</td>
</tr>
<tr>
<th scope="row">The Inkle Path to Weaving</th>
<td>Folts, Teressa</td>
</tr>
<tr>
<th scope="row">Weaving Patterned Bands</th>
<td>Foulkes, Susan J.</td>
</tr>
<tr>
<th scope="row">Weaving Made Easy</th>
<td>Gipson, Liz</td>
</tr>
<tr>
<th scope="row">Rigid Heddle Weaving</th>
<td>Hart, Rowena</td>
</tr>
<tr>
<th scope="row">Please Weave a Message</th>
<td>Hendrick­son, Linda</td>
</tr>
<tr>
<th scope="row">Creative Weaving</th>
<td>Howard, Sarah</td>
</tr>
<tr>
<th scope="row">Sprang Unsprung</th>
<td>James, Carol</td>
</tr>
<tr>
<th scope="row">Fingerweaving Untangled</th>
<td>James, Carol</td>
</tr>
<tr>
<th scope="row">Sprang Lace Patterns</th>
<td>James, Carol</td>
</tr>
<tr>
<th scope="row">In Celebration of Plain Weave: Color and Design Inspiration for Inkle Weavers</th>
<td>MacHale, Annie</td>
</tr>
<tr>
<th scope="row">Twist, Turn, & Tie: 50 Japanese Kumihimo Braids</th>
<td>Kemp, Beth</td>
</tr>
<tr>
<th scope="row">Inventive Weaving on a Little Loom</th>
<td>Mitchell, Syne</td>
</tr>
<tr>
<th scope="row">Kongehimo</th>
<td>Nielson, Rosalie</td>
</tr>
<tr>
<th scope="row">Kumihimo Interlacement</th>
<td>Nielson, Rosalie</td>
</tr>
<tr>
<th scope="row">Kumihimo (Japanese language)</th>
<td>(Not listed)</td>
</tr>
<tr>
<th scope="row">The Weaver's Idea Book: Creative Cloth on a Rigid Heddle Loom</th>
<td>Patrick, Jane</td>
</tr>
<tr>
<th scope="row">Woven Scarves (26 Designs for the Rigid Heddle Loom)</th>
<td>Patrick, Jane;<br>Sokolov, Stephanie</td>
</tr>
<tr>
<th scope="row">Estonian Pick-Up Woven Belts </th>
<td>Rand, Piia</td>
</tr>
<tr>
<th scope="row">Backstrap Weaving of Northern Ecuador</th>
<td>Redwood</td>
</tr>
<tr>
<th scope="row">Step by Step Tablet Weaving</th>
<td>Snow, Marjorie</td>
</tr>
<tr>
<th scope="row">Backstrap Weaving</th>
<td>Taber, Barbara;<br>Anderson, Marilyn</td>
</tr>
<tr>
<th scope="row">Lithuanian Sashes</th>
<td>Tamo­saitis, Anastasia</td>
</tr>
<tr>
<th scope="row">Norwegian Pickup Bandweaving</th>
<td>Torgunrud, Heather</td>
</tr>
<tr>
<th scope="row">Andean Pebble Weave: Step-by-Step Lessons for Weaving Traditional and Contemporary Pebble Weave</th>
<td>Wadding­ton, Laverne</td>
</tr>
<tr>
<th scope="row">More Adventures With Warp-Faced Pick Up Patterns</th>
<td>Wadding­ton, Laverne</td>
</tr>
<tr>
<th scope="row">Getting Started With Seed Beads</th>
<td>Wedekind, Dustin</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Tapestry -->
<div class="accordion-item">
<h3 class="accordion-header" id="media_heading_8">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#media_collapse_8" aria-expanded="false" aria-controls="media_collapse_8">
Tapestry
</button>
</h3>
<div id="media_collapse_8" class="accordion-collapse collapse" aria-labelledby="media_heading_8" data-bs-parent="#accordion_media">
<div class="accordion-body">
<table class="table">
<thead class="accent_bg_2 light align-middle">
<tr>
<th scope="col" class="col">Title</th>
<th scope="col" class="col-2 col-md-4">Author</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Tapestry</th>
<td>Glassbook, Christine</td>
</tr>
<tr>
<th scope="row">Patterns for Tapestry Weaving</th>
<td>Harvey, Nancy</td>
</tr>
<tr>
<th scope="row">Tapestry Weaving</th>
<td>Harvey, Nancy</td>
</tr>
<tr>
<th scope="row">The Guide to Successful Tapestry Weaving</th>
<td>Harvey, Nancy</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Weaving -->
<div class="accordion-item">
<h3 class="accordion-header" id="media_heading_9">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#media_collapse_9" aria-expanded="false" aria-controls="media_collapse_9">
Weaving
</button>
</h3>
<div id="media_collapse_9" class="accordion-collapse collapse" aria-labelledby="media_heading_9" data-bs-parent="#accordion_media">
<div class="accordion-body">
<table class="table">
<thead class="accent_bg_2 light align-middle">
<tr>
<th scope="col" class="col">Title</th>
<th scope="col" class="col-2 col-md-4">Author</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Mastering Weave Structures</th>
<td>Alderman, Sharon D.</td>
</tr>
<tr>
<th scope="row">Finishes in the Ethnic Tradition</th>
<td>Baizer­man, Suzanne</td>
</tr>
<tr>
<th scope="row">Sixty Scarves for 60 Years</th>
<td>Baltimore Weavers Guild </td>
</tr>
<tr>
<th scope="row">Boundweave</th>
<td>Barrett, Clotilde</td>
</tr>
<tr>
<th scope="row">Double Two-Tie Unit Weaves</th>
<td>Barrett, Clotilde</td>
</tr>
<tr>
<th scope="row">Shadow Weave and Corkscrew Weave</th>
<td>Barrett, Clotilde</td>
</tr>
<tr>
<th scope="row">Summer & Winter and Beyond</th>
<td>Barrett, Clotilde</td>
</tr>
<tr>
<th scope="row">Bateman Blend Weaves</th>
<td>Bateman, William G.</td>
</tr>
<tr>
<th scope="row">Boulevard, Chevron, and Combination Weaves</th>
<td>Bateman, William G.</td>
</tr>
<tr>
<th scope="row">Extended Divided Twill Weaves</th>
<td>Bateman, William G.</td>
</tr>
<tr>
<th scope="row">Extended Manifold Twill Weaves</th>
<td>Bateman, William G.</td>
</tr>
<tr>
<th scope="row">Park Weave</th>
<td>Bateman, William G.</td>
</tr>
<tr>
<th scope="row">The New Key to Weaving</th>
<td>Black, Mary E.</td>
</tr>
<tr>
<th scope="row">The Book of Line Linen</th>
<td>Bonne­ville, Francoise de</td>
</tr>
<tr>
<th scope="row">The Weaving Book: Patterns and Ideas</th>
<td>Bress, Helene</td>
</tr>
<tr>
<th scope="row">The Book of Looms</th>
<td>Broudy, Eric</td>
</tr>
<tr>
<th scope="row">The Weaving, Spinning, and Dyeing Book</th>
<td>Brown, Rachel</td>
</tr>
<tr>
<th scope="row">A Crackle Weave Companion: Exploring Four Shaft Crackle</th>
<td>Brusic, Lucy</td>
</tr>
<tr>
<th scope="row">Keep Me Warm One Night: Early Hand Weaving in Eastern Canada</th>
<td>Burnham, Harold B.</td>
</tr>
<tr>
<th scope="row">Peter Collingwood: His Weaves and Weaving</th>
<td>Colling­wood, Peter</td>
</tr>
<tr>
<th scope="row">Magical Materials to Weave</th>
<td>Dalgaard, Lotte</td>
</tr>
<tr>
<th scope="row">A Handweaver's Pattern Book</th>
<td>Davison, Margue­rite Porter</td>
</tr>
<tr>
<th scope="row">Handweaver's Source Book</th>
<td>Davison, Margue­rite Porter</td>
</tr>
<tr>
<th scope="row">Weaving on 3 Shafts</th>
<td>de Ruiter, Erica</td>
</tr>
<tr>
<th scope="row">The Handweaver's Pattern Directory: Over 600 Weaves for Four-Shaft Looms</th>
<td>Dixon, Anne</td>
</tr>
<tr>
<th scope="row">Woven Shibori</th>
<td>Ellis, Catharine</td>
</tr>
<tr>
<th scope="row">Warp and Weft: Lessons in Drafting for Handweaving</th>
<td>Eriksson, Mariana;<br>Gustavs­son, Gunnel;<br>Lovallius, Kerstin</td>
</tr>
<tr>
<th scope="row">Original Miniature Patterns for Hand Weaving, Part 1</th>
<td>Estes, Josephine E.</td>
</tr>
<tr>
<th scope="row">Original Miniature Patterns for Hand Weaving, Part 2</th>
<td>Estes, Josephine E.</td>
</tr>
<tr>
<th scope="row">A Joy Forever</th>
<td>Evans, Jane A.</td>
</tr>
<tr>
<th scope="row">Collapse Weave: Creating Three Dimensional Cloth</th>
<td>Field, Anne</td>
</tr>
<tr>
<th scope="row">The Weaver's Weevil</th>
<td>Fox, Rebecca</td>
</tr>
<tr>
<th scope="row">Magic in the Water: Wet Finishing Handwovens</th>
<td>Fry, Laura</td>
</tr>
<tr>
<th scope="row">Warping All by Yourself</th>
<td>Garrett, Cay</td>
</tr>
<tr>
<th scope="row">Weaving Tricks</th>
<td>Gilmurray, Susan</td>
</tr>
<tr>
<th scope="row">Next Steps in Weaving</th>
<td>Graver, Pattie</td>
</tr>
<tr>
<th scope="row">Krokbragd: How to Design and Weave</th>
<td>Greenlaw, Debby</td>
</tr>
<tr>
<th scope="row">200 Patterns for Multiple Harness Looms</th>
<td>Groff, Russell E.</td>
</tr>
<tr>
<th scope="row">The Magic of Linen</th>
<td>Heinrich, Linda</td>
</tr>
<tr>
<th scope="row">Linen from Flaxseed to Linen Cloth</th>
<td>Heinrich, Linda</td>
</tr>
<tr>
<th scope="row">Weft-Faced Pattern Weaves, Tabby to Taqueté</th>
<td>Hoskins, Nancy Arthur</td>
</tr>
<tr>
<th scope="row">Favorite Scandinavian Projects to Weave: 45 Stylish Designs for the Modern Home</th>
<td>Ignell, Tina</td>
</tr>
<tr>
<th scope="row">Weaving a Traditional Coverlet</th>
<td>Jarvis, Helen N.</td>
</tr>
<tr>
<th scope="row">Designing with Blocks</th>
<td>Keasbey, Doramay</td>
</tr>
<tr>
<th scope="row">Pattern Devices for Handweavers</th>
<td>Keasbey, Doramay</td>
</tr>
<tr>
<th scope="row">Sheer Delight: Handwoven Transparencies</th>
<td>Keasbey, Doramay</td>
</tr>
<tr>
<th scope="row">Pattern Techniques for Hand Weavers</th>
<td>Keasbey, Doramay</td>
</tr>
<tr>
<th scope="row">Huck Weaving Patterns with Color and Weave Effects</th>
<td>Knisley, Tom</td>
</tr>
<tr>
<th scope="row">Designing for Weaving</th>
<td>Kurtz, Carol S.</td>
</tr>
<tr>
<th scope="row">Warp With a Paddle and Beam Without Paper</th>
<td>Landis, Lucille</td>
</tr>
<tr>
<th scope="row">More Than Four</th>
<td>Laughlin, Mary Elizabeth</td>
</tr>
<tr>
<th scope="row">Creative Weaving: Warp and Weft</th>
<td>LeClerc Looms, Inc.</td>
</tr>
<tr>
<th scope="row">The Big Book of Weaving: Handweaving the Swedish Tradition, Techniques, Patterns, Designs and Materials</th>
<td>Lundell, Laila</td>
</tr>
<tr>
<th scope="row">Custom Woven Interiors: Warp Faced Designs</th>
<td>Marshall, Kelly;<br>Egenber­ger, Amy</td>
</tr>
<tr>
<th scope="row">Doubleweave</th>
<td>Moore, Jennifer</td>
</tr>
<tr>
<th scope="row">Weaving as an Art Form</th>
<td>Moorman, Theo</td>
</tr>
<tr>
<th scope="row">Handwoven Laces</th>
<td>Muller, Donna</td>
</tr>
<tr>
<th scope="row">Warping Your Loom and Tying on New Warps</th>
<td>Oster­kamp, Peggy</td>
</tr>
<tr>
<th scope="row">Winding a Warp and Using a Paddle</th>
<td>Oster­kamp, Peggy</td>
</tr>
<tr>
<th scope="row">1000+ Patterns in 4,6, and 8 Harness Shadow Weaves</th>
<td>Powell, Marian</td>
</tr>
<tr>
<th scope="row">Learning to Weave</th>
<td>Redding, Debbie</td>
</tr>
<tr>
<th scope="row">The Art of Weaving</th>
<td>Regen­stei­ner, Else</td>
</tr>
<tr>
<th scope="row">Weaving Textiles That Shape Themselves</th>
<td>Richards, Ann</td>
</tr>
<tr>
<th scope="row">Ikat</th>
<td>Ritch, Diane</td>
</tr>
<tr>
<th scope="row">Weaving a Life: The Story of Mary Meigs Atwater</th>
<td>Reiter, Mary Jo</td>