-
Notifications
You must be signed in to change notification settings - Fork 0
/
UBRP 30.html
700 lines (684 loc) ยท 42.2 KB
/
UBRP 30.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Urantia Resources</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
body {
font-family: Arial, sans-serif;
background: radial-gradient(circle at center, #dcdcdc, #bbb, #007bff, #bbb, #007bff, #bbb, #007bff, #bbb, #007bff, #bbb, #007bff, #bbb, #007bff, #bbb, #007bff);
background-attachment: fixed;
background-size: 100%;
background-position: center center;
color: #ecf4ff;
margin: 0;
transition: background-size 0.2s ease;
}
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
display: flex;
justify-content: center;
background-color: #1f1f1f; /* Updated color */
padding: 5px 0;
z-index: 1000;
border-radius: 0px;
font-size: 10px;
}
.navbar-bottom {
bottom: 0;
top: auto;
}
.navbar-container {
display: flex;
justify-content: space-around;
flex-wrap: nowrap;
max-width: 1200px;
width: 100%;
margin: 0 40px;
}
.navbar a {
position: relative;
color: #f4f4f4;
text-decoration: none;
padding: 10px;
margin: 0 0px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
flex: 1;
}
.navbar a .tooltip {
display: none;
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
background-color: #f4f4f4;
color: #000;
padding: 5px;
border-radius: 5px;
font-size: 12px;
white-space: nowrap;
}
.navbar-bottom a .tooltip {
top: auto;
bottom: 100%;
}
.navbar a:hover .tooltip {
display: block;
}
.navbar a i {
font-size: 18px; /* Updated icon size */
}
@media screen and (max-width: 600px) {
.navbar {
bottom: 0;
top: auto;
}
}
.thumbnail {
height: 100px;
max-width: 100%;
display: block;
margin: 0 auto;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 50px 15px 60px 15px;
}
.content-container {
padding: 20px;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 20px;
box-shadow: 0 0 20px rgba(255, 255, 255, 255);
margin-bottom: 20px;
overflow: hidden;
text-align: center;
}
a {
color: #ffdac4;
text-decoration: none;
display: block;
}
a:hover {
text-decoration: underline;
}
label {
display: block;
vertical-align: top;
padding: 5px 0;
}
textarea {
width: calc(100% - 40px);
padding: 20px;
border: 1px solid #ccc;
border-radius: 10px;
resize: vertical;
}
</style>
<script>
window.addEventListener('scroll', function () {
var scrollY = window.scrollY;
var zoom = 100 + Math.log(1 + scrollY / 100) * 30;
document.body.style.backgroundSize = zoom + '%';
});
window.addEventListener('resize', function () {
var navbar = document.querySelector('.navbar');
if (window.innerWidth <= 600) {
navbar.classList.add('navbar-bottom');
} else {
navbar.classList.remove('navbar-bottom');
}
});
</script>
</head>
<body>
<div class="navbar">
<div class="navbar-container">
<a href="#Text_and_Documentations" class="nav-link"><i class="fas fa-book"></i><span class="tooltip">Text & Documentations</span></a>
<a href="#Images_and_Illustrations" class="nav-link"><i class="fas fa-image"></i><span class="tooltip">Images & Illustrations</span></a>
<a href="#Videos_and_Films" class="nav-link"><i class="fas fa-film"></i><span class="tooltip">Videos & Films</span></a>
<a href="#Music_and_Audio" class="nav-link"><i class="fas fa-music"></i><span class="tooltip">Music & Audio</span></a>
<a href="#Education_and_Courses" class="nav-link"><i class="fas fa-graduation-cap"></i><span class="tooltip">Education & Courses</span></a>
<a href="#Events_and_Communities" class="nav-link"><i class="fas fa-calendar-alt"></i><span class="tooltip">Events & Communities</span></a> <!-- Fixed typo -->
<a href="#Organizations" class="nav-link"><i class="fas fa-building"></i><span class="tooltip">Organizations</span></a>
<a href="#Projects_and_Products" class="nav-link"><i class="fas fa-industry"></i><span class="tooltip">Projects & Products</span></a>
<a href="#Submit_Your_Suggestions" class="nav-link"><i class="fas fa-comment-dots"></i><span class="tooltip">Submit Your Suggestions</span></a>
</div>
</div>
<div class="container">
<h1>Urantia Resources</h1>
<div class="content-container">
<p>This page categorizes The Urantia Book (UB) resources in one place, to narrow the search for those looking for the UB context. Not affiliated to any organization. This is my best interpretation of the UB context. If you have add/remove suggestions, please use the โSuggestionsโ section.
Resources meeting cult definition will not be listed on this page.</p>
</div>
<div class="content-container" id="Text_and_Documentations">
<h2>Text & Documentations</h2>
<br>
<br>
<img src="https://ubannotated.com/wp-content/uploads/2018/06/UBtheNEWS-banner-672x99.jpg" alt="Image" class="thumbnail">
<a href="https://ubannotated.com/ubthenews/">https://ubannotated.com/ubthenews/</a>
<p>The UBtheNEWS project (for the most part) is about documenting how new discoveries and scientific advances increasingly support Urantia Book history. The Urantia Book asserts that โthe historic facts and religious truths of this series of revelatory presentations will stand on the records of the ages to come โฆโ and it was published in 1955. This essentially amounts to a claim of and test for a superhuman quality of credibility.</p>
<br>
<br>
<img src="https://archive.urantiabook.org/ubsearch/gif/fellowship_logo_blue_with_light_blue_bgd_26x34.gif" alt="Image" class="thumbnail">
<a href="https://archive.urantiabook.org/ubsearch/ubsearch.html">https://archive.urantiabook.org/ubsearch/ubsearch.html</a>
<p>Deep Search The Urantia Book</p>
<br>
<br>
<img src="https://urantiabooksources.com/wp-content/uploads/2018/07/cropped-ubsources_logo2018-1.png" alt="Image" class="thumbnail">
<a href="https://urantiabooksources.com/">https://urantiabooksources.com/</a>
<p>This website has been created to share my parallel charts, which identify the sources for particular Urantia papers (or sections) and trace how they were used.</p>
<br>
<br>
<img src="https://urantiaartisans.com/wp-content/uploads/2020/11/Urantia-Artisans-Logo-1024x1024.jpg" alt="Image" class="thumbnail">
<a href="https://urantiaartisans.com/">https://urantiaartisans.com/</a>
<p>A global community of talented Urantia Book Readers who promote spiritual transformation by sharing a Revelation of Living Truth through art.</p>
<br>
<br>
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse4.mm.bing.net%2Fth%3Fid%3DOIP.dTbsyhgrkzMMocxoLhTofwAAAA%26pid%3DApi&f=1&ipt=fe78fd49f07eb4354fec7b6e81d48e534730132f4068c31decda4d452b0ca661&ipo=images" alt="Image" class="thumbnail">
<a href="https://urantiapedia.org/en/home">https://urantiapedia.org/en/home</a>
<p>Urantiapedia is a website where to publish, share and collaborate on any of The Urantia Book related content.</p>
<br>
<br>
<img src="https://squarecircles.com/wp-content/uploads/2018/07/squarecircles_logo145.png" alt="Image" class="thumbnail">
<a href="https://squarecircles.com/">https://squarecircles.com/</a>
<p>SquareCircles.com is a place to learn about the Urantia Book. Here you can read the Papers online, find studies that delve into the Urantia Papers' human sources, historic documents that lead us deeper into the mystery of how the Papers came to our world, and works that help us to understand difficult concepts in the Papers.</p>
<br>
<br>
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F6%2F61%2FUrantia_three-concentric-blue-circles-on-white_symbol.svg%2F1024px-Urantia_three-concentric-blue-circles-on-white_symbol.svg.png&f=1&nofb=1&ipt=ba41e15a7f759719097f2f55a58e99831355f4200e6f247ed8b85626c3771c62&ipo=images" alt="Image" class="thumbnail">
<a href="https://urantialibrary.org/">https://urantialibrary.org/</a>
<p>Our ambition is to create a library of world wide significance that connects people of all cultures with Jesus through the Urantia Book.</p>
<br>
<br>
<img src="https://thechristexperiment.org/wp-content/uploads/2022/02/Logo-Aquafine-600x140.png" alt="Image" class="thumbnail">
<a href="https://thechristexperiment.org/">https://thechristexperiment.org/</a>
<p>The Christ Experiment "Uplifting the spiritual conversation".</p>
<br>
<br>
<img src="https://www.urantia.org/sites/all/themes/yp_urantia_responsive/images/bg-banner.png" alt="Image" class="thumbnail">
<a href="https://www.urantia.org/in-his-steps">https://www.urantia.org/in-his-steps</a>
<p>In His Steps - Maps of Jesus' Travels.</p>
<br>
<br>
<img src="https://www.urantia.org/sites/all/themes/yp_urantia_responsive/images/bg-banner.png" alt="Image" class="thumbnail">
<a href="https://www.urantia.org/urantia-book/topical-studies">https://www.urantia.org/urantia-book/topical-studies</a>
<p>Topical And Doctrinal Studies.</p>
<br>
<br>
</div>
<div class="content-container" id="Images_and_Illustrations">
<h2>Images & Illustrations</h2>
<br>
<br>
<img src="https://truthbook.com/wp-content/uploads/2021/05/TruthbookLogoRightWhite594x119.png" alt="Image" class="thumbnail">
<a href="https://truthbook.com/urantia-book/urantia-book-timeline/">https://truthbook.com/urantia-book/urantia-book-timeline/</a>
<p>Timeline Epocs: Before Time - Origins in infinity; Ancient History - From the earliest recorded date in The Urantia Book to 10 million years ago; Early History - From 10 million years ago to the birth of Jesus, 7 BC; The Life of Jesus - From 7 BC to 30 AD; Modern History - From 30 AD to the present; The Future - From the present up to the stages of light and life.</p>
<br>
<br>
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwww.urantia.org%2Fsites%2Fdefault%2Ffiles%2Fimages%2Fgallery%2F2011-the-urantia-book-boxed-leather-blue.png&f=1&nofb=1&ipt=fb6fd58a98fb021862476732c03c6c5cd49edd65b79393ac6602f52b0552f751&ipo=images" alt="Image" class="thumbnail">
<a href="https://ubannotated.com/wp-content/uploads/2021/06/Timeline20210625.pdf">https://ubannotated.com/wp-content/uploads/2021/06/Timeline20210625.pdf</a>
<p>NEW DISCOVERIES CORROBORATING THE URANTIA BOOK (Interactive).</p>
<br>
<br>
<img src="https://external-content.duckduckgo.com/iu/?u=http%3A%2F%2Fstatic-1.ivoox.com%2Faudios%2F8%2F9%2F2%2F0%2F6541480910298_XXL.jpg&f=1&nofb=1&ipt=d4711d4b306e3385155e1467b2184e6743224ec7e909c471486b68b94c9d9793&ipo=images" alt="Image" class="thumbnail">
<a href="https://www.universalfather.info/">https://www.universalfather.info/</a>
<p>Paradise Cosmology Chart (Interactive).</p>
<br>
<br>
<img src="https://external-content.duckduckgo.com/iu/?u=http%3A%2F%2Fstatic-1.ivoox.com%2Faudios%2F8%2F9%2F2%2F0%2F6541480910298_XXL.jpg&f=1&nofb=1&ipt=d4711d4b306e3385155e1467b2184e6743224ec7e909c471486b68b94c9d9793&ipo=images" alt="Image" class="thumbnail">
<a href="https://www.orvonton.info/">https://www.orvonton.info/</a>
<p>Orvonton Cosmology Chart (Interactive).</p>
<br>
<br>
<img src="https://external-content.duckduckgo.com/iu/?u=http%3A%2F%2Fstatic-1.ivoox.com%2Faudios%2F8%2F9%2F2%2F0%2F6541480910298_XXL.jpg&f=1&nofb=1&ipt=d4711d4b306e3385155e1467b2184e6743224ec7e909c471486b68b94c9d9793&ipo=images" alt="Image" class="thumbnail">
<a href="https://www.nebadon.info/">https://www.nebadon.info/</a>
<p>Nebadon Cosmology Chart (Interactive).</p>
<br>
<br>
<img src="https://ubannotated.com/wp-content/uploads/2018/06/evolution-man-computer-1.gif" alt="Image" class="thumbnail">
<a href="https://ubannotated.com/wp-content/uploads/2021/06/Family-Tree.pdf">https://ubannotated.com/wp-content/uploads/2021/06/Family-Tree.pdf</a>
<p>Family Tree of Humanity.</p>
<br>
<br>
<img src="https://ubannotated.com/wp-content/uploads/2018/06/evolution-man-computer-1.gif" alt="Image" class="thumbnail">
<a href="https://ubannotated.com/wp-content/uploads/2021/06/Saskia-Ape2Man.pdf">https://ubannotated.com/wp-content/uploads/2021/06/Saskia-Ape2Man.pdf</a>
<p>From Ape to Man Pictorial Guide.</p>
<br>
<br>
<img src="https://ubannotated.com/wp-content/uploads/2018/06/evolution-man-computer-1.gif" alt="Image" class="thumbnail">
<a href="https://ubannotated.com/wp-content/uploads/2021/06/Saskia-ManApeRelated.pdf">https://ubannotated.com/wp-content/uploads/2021/06/Saskia-ManApeRelated.pdf</a>
<p>How Man and the Ape Are Related.</p>
<br>
<br>
<img src="https://talkitup.community-pro.de/images/style-2/pageLogoMobile.jpg" alt="Image" class="thumbnail">
<a href="https://talkitup.community-pro.de/forum/index.php?thread/111-urantia-book-illustrations/">https://talkitup.community-pro.de/forum/index.php?thread/111-urantia-book-illustrations/</a>
<p>Urantia Book Illustrations.</p>
<br>
<br>
<img src="https://archive.urantiabook.org/graphics/bg-header-from-bc.jpg" alt="Image" class="thumbnail">
<a href="https://archive.urantiabook.org/ill_ub_index.htm">https://archive.urantiabook.org/ill_ub_index.htm</a>
<p>The Illustrated Urantia Book.</p>
<br>
<br>
<img src="https://truthbook.com/wp-content/uploads/2021/05/TruthbookLogoRightWhite594x119.png" alt="Image" class="thumbnail">
<a href="https://truthbook.com/truthbook-galleries/urantia-book-wallpaper/">https://truthbook.com/truthbook-galleries/urantia-book-wallpaper/</a>
<p>The images in this Collection are all focused on bringing to life The Urantia Book and each has a Urantia Book quote or artist quote which you can see by clicking each image.</p>
<br>
<br>
<img src="https://www.urantia.org/sites/all/themes/yp_urantia_responsive/images/bg-banner.png" alt="Image" class="thumbnail">
<a href="https://www.urantia.org/study/seminar-presentations">https://www.urantia.org/study/seminar-presentations</a>
<p>Seminars & Presentations.</p>
<br>
<br>
<img src="https://www.urantia.org/sites/all/themes/yp_urantia_responsive/images/bg-banner.png" alt="Image" class="thumbnail">
<a href="https://www.urantia.org/study/artists-conception-master-universe">https://www.urantia.org/study/artists-conception-master-universe</a>
<p>An Artist's Conception of the Master Universe.</p>
<br>
<br>
</div>
<div class="content-container" id="Videos_and_Films">
<h2>Videos & Films</h2>
<br>
<br>
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse1.mm.bing.net%2Fth%3Fid%3DOIP.AsIOVoVZjo6__ucKQKiC7AHaCc%26pid%3DApi&f=1&ipt=ba659e6f322178e8bd384f70c0ee2f5c347c521444359e4ece684624f29c1849&ipo=images" alt="Image" class="thumbnail">
<a href="http://www.urantia-book-films.org/">http://www.urantia-book-films.org/</a>
<p>Imagine Jesus before his death and resurrection became a religion.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaTzauTJ3p4S6rankHXn1XzWAZgfqKg6Ue0JXm1L=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/channel/UCbXrivV3I9Qua4GueLgzhxw/videos">https://www.youtube.com/channel/UCbXrivV3I9Qua4GueLgzhxw/videos</a>
<p>UrantiaFilm, Videos inspired by the ideas and ideals in The Urantia Book.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaQydugHK46gr5y-YFBpkNzh4aS7mvQbzY0zilCo=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/user/urantiamediaarts/videos">https://www.youtube.com/user/urantiamediaarts/videos</a>
<p>Urantianow, Videos that focus on the Urantia Book community.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaRK5EYTN_JeB5HLFSGhEXUabzkruWTRGYwf6OthJQ=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@GaryTonge">https://www.youtube.com/@GaryTonge</a>
<p>Gary Tonge, Consultant Conceptual Art Director, Illustrator, animator.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaSCV19xlNP2MKDVnKOxxYwZuN_46W-KEMGRupc-UA=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@UrantiabookfilmsOrg8">https://www.youtube.com/@UrantiabookfilmsOrg8</a>
<p>UrantiaBookFilms, Top films and videos produced by readers of The Urantia Book.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaRogGE1wvaG3_LJ0eSlaYa4DrEU59kjPx6GrkMe6g=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@evolvingsoulscommunityevol9920">https://www.youtube.com/@evolvingsoulscommunityevol9920</a>
<p>Evolving Souls community (Evolving-Souls.org), Evolving-Souls.org, which offers educational videos relating to the Urantia Revelationโframing it in the broadest context, including its relationship to the world's wisdom traditions as well as contemporary thought (including current science, cosmology, theology, philosophy, psychology, religion, spirituality, and history).</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaSJ-jlx6_jh8lwJ5HNR5yeyZ3cJCRm9hytFRyP_tQ=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@urantiauniversityinstitute6040">https://www.youtube.com/@urantiauniversityinstitute6040</a>
<p>UrantiaUniversity Institute, (UUI) is part of a long-range plan to develop a university grounded in cosmic wisdom, ideals and aspirations. It provides diverse learning paths for students to explore, discern, and actualize the truths and knowledge found in The Urantia Book.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaS1mlWX-MW7epGi58DySjhdqADIf-FNv4S33Kpr=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@urantiabookscienceandhistory">https://www.youtube.com/@urantiabookscienceandhistory</a>
<p>Urantia Book: Science and History, The purpose of The Urantia Book Science and History channel is to provide visual conception and information based on the scientific and historical content of The Urantia Book. To compare and contrast those concepts of The Urantia Book with observations and the multifarious discoveries found in the multitudes of our scientific and historical fields.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaTH0sdmR0ntbgpCYG_TFc2ShlSIACRKckQWvdc=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@faithoverlap1451">https://www.youtube.com/@faithoverlap1451</a>
<p>FaithOverlap is focused on interfaith and Urantia outreach. </p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaQav-840Oi2A82CR9BPeXojzr6v59AS0rMROtzM=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@UrantiaLifeLessons">https://www.youtube.com/@UrantiaLifeLessons</a>
<p>Urantia Life Lessons will walk you through the core concepts of The Urantia Book with an emphasis on the role that those concepts plays in our lives.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaQprgGbQTpLUxRnhQte8Jia0W9v8iHUVqKO9BSSEg=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@UrantiaFellowship">https://www.youtube.com/@UrantiaFellowship</a>
<p>Urantia Book Fellowship</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaSqu3xDqwJyMjd0TUUadXa9qZ8mW4F1LXtMgX8X=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@urantiassociationinternational">https://www.youtube.com/@urantiassociationinternational</a>
<p>Urantia Association International is a worldwide network of Urantia Book readers who have chosen to participate in our mission to foster the study of The Urantia Book and the dissemination of its teachingsโteachings which have the potential to rejuvenate spirituality in this world.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaSPCmy2miyDUl307XabC9DqLGlZyBf-6CPkLFZz3w=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@asociacionurantiadeespana">https://www.youtube.com/@asociacionurantiadeespana</a>
<p>Asociaciรณn Urantia de Espaรฑa.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaSur07yhDFYCu3CqngNohKbY4u85dRe3rEK2iHf=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@UrantiaBogota">https://www.youtube.com/@UrantiaBogota</a>
<p>UrantiaBogota. Videos de conferencias, material de estudio, etc, preparado por los lectores del Libro de Urantia de Bogotรก y Colombia.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaT9R-IzpOWo0y60DayYU0AQJS_hDkkm6_PufW9Ibw=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@UrantiaFoundation">https://www.youtube.com/@UrantiaFoundation</a>
<p>Urantia Foundation was established in 1950 to be the custodian of the inviolate text of The Urantia Book and to ensure that the book's teachings are spread, with the help of readers and fraternal organizations, to all people.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaSzG2dUEKMU8ay7BvwuFpg3HmhJ70hbH5ocLZ3X=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@Truthbook">https://www.youtube.com/@Truthbook</a>
<p>Truthbook. Urantia Book, the life of Jesus, Jesus Images and videos from www.truthbook.com</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaRRWdo-jFKNGTfs5kEYRFWCDaLuuFxkq0WmACXH=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@christopherlepine">https://www.youtube.com/@christopherlepine</a>
<p>Christopher Lepine. You are unique, and have a unique set of God-given gifts. There is a life you were meant to live that will bring you a new happiness and peace beyond your dreams: this is the life of real spiritual discovery with the real God.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaSLZorCscjjb4lvd-DQn6hz4pdm9PijAFzTvEg0XQ=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@urantiabooknetwork">https://www.youtube.com/@urantiabooknetwork</a>
<p>Urantia Book Network (UBN) is a not-for-profit, collective that connects the creative, educational, and technological resources inspired by and aligned with the teachings in the Urantia Book. UBN collaborates with existing organizations to unify, integrate, and archive their work.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaSxxMDGz9jlTdc2cSDU5tYt0lQGJGh35mtTYMXB=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@OfficialPatoBanton">https://www.youtube.com/@OfficialPatoBanton</a>
<p>Pato Banton. Positive Vibrations abound with a beat to keep you on your dancing feet, while Pato delivers a message that is food for the mind and soul. Many have considered his charismatic performance as live theatre where no show is alike and audience members become participants in the experience.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaTzauTJ3p4S6rankHXn1XzWAZgfqKg6Ue0JXm1L=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@urantiafilm4143">https://www.youtube.com/@urantiafilm4143</a>
<p>UrantiaFilm. Videos inspired by the ideas and ideals in The Urantia Book. </p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaSDMI34RDpEq9GxWLPKMmwO5nyqNKWxvAudTA=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@nnunn606">https://www.youtube.com/@nnunn606</a>
<p>Nigel Nunn.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaSKw-AGpJ-WS2Mw9mC4fBwQ2i-k1OhB02aZm4-d=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@DiptiBhakti/playlists">https://www.youtube.com/@DiptiBhakti/playlists</a>
<p>Dipti Bhakti.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaSYR0dNVlg0gupps3a9ffWu68TUyAUVUbxJAGE4Tw=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@SpiritualUnfoldment/playlists">https://www.youtube.com/@SpiritualUnfoldment/playlists</a>
<p>Spiritual Unfoldment with John Butler. "WHO AM I, but just one more of those who, since time began, have walked the hills and gazed upon the stars? When we, with heart outstretched, feel close to God, it's safer to be humble than to think we know.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/PbocNwcM9vaHLCHz7AqYztApzZAuduIOTZyIp4kDsWu7WJK2qierirBenN8vJ_34a6_DdqKtjj4=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@UrantiaVideos">https://www.youtube.com/@UrantiaVideos</a>
<p>/UrantiaVideos. This channel has a number of videos about the life and teachings of Jesus based on stories found in the Urantia Book. There are also videos about the scientific content of the book and about some of the major concepts found in the book.</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaT2FX_TWTZpd7UbfokYeK51KiIbMCAJBHZIDg=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@UrantiaUBLAEducation">https://www.youtube.com/@UrantiaUBLAEducation</a>
<p>UrantiaUBLAEducation.</p>
<br>
<br>
<img src="https://truthbook.com/wp-content/uploads/2021/05/TruthbookLogoRightWhite594x119.png" alt="Image" class="thumbnail">
<a href="https://truthbook.com/urantia-book/urantia-book-videos/">https://truthbook.com/urantia-book/urantia-book-videos/</a>
<p>Urantia Book Videos, Power Point Presentations, Readerโs Movies and More</p>
<br>
<br>
</div>
<div class="content-container" id="Music_and_Audio">
<h2>Music & Audio</h2>
<br>
<br>
<img src="https://d1968gvlgd19vw.cloudfront.net/urantia-radio/230725130840-URANTIA+RADIO+LOGO+W+CLOUDS.jpg" alt="Image" class="thumbnail">
<a href="https://urantiaradio.net/">https://urantiaradio.net/</a>
<p>This podcast is for people who want to know more about the Urantia Book, an incredible collection of papers having to do with God, the universe and our own world history, plus the actual story of Jesus' life and teachings as restated in revelatory form.</p>
<br>
<br>
<img src="https://dasg7xwmldix6.cloudfront.net/hostpics/9009b5a3-d6f6-46cd-a3a6-86901833ff99_cc_flat_149_webpage.jpg" alt="Image" class="thumbnail">
<a href="http://percolate.blogtalkradio.com/cosmiccitizen">http://percolate.blogtalkradio.com/cosmiccitizen</a>
<p>Are you ready to courageously follow your own sense of mercy, justice, and truth? Are you searching for religious teachings that make sense? Are you having a hard time accepting teachings which seem spiritually unholy and untruthful? Then, have we got a show for you!</p>
<br>
<br>
<img src="https://dasg7xwmldix6.cloudfront.net/hostpics/777fbb4d-ed70-4816-9f81-e7bc6c4c31b4_theophanic_light_-_symmetry_of_soul.jpg" alt="Image" class="thumbnail">
<a href="http://percolate.blogtalkradio.com/symmetryofsoul/34">http://percolate.blogtalkradio.com/symmetryofsoul/34</a>
<p>Each Tuesday, a broadcast focused on science, religion, and philosophy, based on the unifying concepts of The Urantia Book.</p>
<br>
<br>
<img src="https://f4.bcbits.com/img/a2111295425_16.jpg" alt="Image" class="thumbnail">
<a href="https://urantiaartisans.bandcamp.com/album/new-day-dawning">https://urantiaartisans.bandcamp.com/album/new-day-dawning</a>
<p>New Day Dawning by Pato Banton & Friends
</p>
<br>
<br>
<img src="https://f4.bcbits.com/img/a4187487360_16.jpg" alt="Image" class="thumbnail">
<a href="https://urantiaartisans.bandcamp.com/album/inspiration-from-revelation">https://urantiaartisans.bandcamp.com/album/inspiration-from-revelation</a>
<p>Inspiration From Revelation by Urantia Artisans
</p>
<br>
<br>
<img src="https://f4.bcbits.com/img/a0890060909_16.jpg" alt="Image" class="thumbnail">
<a href="https://urantiaartisans.bandcamp.com/album/my-day">https://urantiaartisans.bandcamp.com/album/my-day</a>
<p>My Day by Genny
</p>
<br>
<br>
<img src="https://f4.bcbits.com/img/a2469313250_16.jpg" alt="Image" class="thumbnail">
<a href="https://urantiaartisans.bandcamp.com/album/visions">https://urantiaartisans.bandcamp.com/album/visions</a>
<p>Visions by Jonathon Johnson</p>
<br>
<br>
<img src="https://cristinaseaborn.com/wp-content/uploads/2021/09/EmilieLeger-SouvenirDHiver-I-am-a-Sound-Woman-web-150x150.jpg" alt="Image" class="thumbnail">
<a href="https://cristinaseaborn.com/cd-digital-music/">https://cristinaseaborn.com/cd-digital-music/</a>
<p>Cristina Seaborn</p>
<br>
<br>
<img src="https://jwoodymusic.com/wp-content/uploads/JWoodyMusicLogo.png" alt="Image" class="thumbnail">
<a href="https://jwoodymusic.com/news/">https://jwoodymusic.com/news/</a>
<p>J Woody Releases.</p>
<br>
<br>
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fi.pinimg.com%2Foriginals%2Fc8%2Fc1%2F04%2Fc8c104b4733fb536fc651e5d38fc501b.png&f=1&nofb=1&ipt=1f2b74bd1833aac4d2c50875140b6892beef18afecbfad4487b89fb78a1f4eae&ipo=images" alt="Image" class="thumbnail">
<a href="https://music.apple.com/gh/artist/kwadjo-spiri/1023458005">https://music.apple.com/gh/artist/kwadjo-spiri/1023458005</a>
<p>Kwadjo Spiri</p>
<br>
<br>
<img src="https://f4.bcbits.com/img/a0969519100_16.jpg" alt="Image" class="thumbnail">
<a href="https://nickybendix.bandcamp.com/album/dreams-within-orvonton">https://nickybendix.bandcamp.com/album/dreams-within-orvonton</a>
<p>Dreams Within Orvonton by Nicky Bendix</p>
<br>
<br>
<img src="https://yt3.googleusercontent.com/ytc/AOPolaQ4kBfOZlaVE9BhnzFH3HY0kRlH5lg5lfLhdRZ5=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/@urantiapapers">https://www.youtube.com/@urantiapapers</a>
<p>urantiapapers.</p>
<br>
<br>
<img src="https://i.ytimg.com/vi/pKj5S0Yuigc/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=https://yt3.googleusercontent.com/ytc/AOPolaS6WSiYgMYFHSxW-tU9BMXyJHX88f2DQ99exjV2UQ=s176-c-k-c0x00ffffff-no-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/watch?v=pKj5S0Yuigc&list=PL1gnufz_pjymRGoc_BEJgHiLovD7Lt-eQ&index=1">https://www.youtube.com/watch?v=pKj5S0Yuigc&list=PL1gnufz_pjymRGoc_BEJgHiLovD7Lt-eQ&index=1</a>
<p>Urantia Audiobook</p>
<br>
<br>
<img src="https://www.urantia.org/sites/default/files/u4/new-urantia-cover-1.png" alt="Image" class="thumbnail">
<a href="https://www.urantia.org/urantia-book/listen-urantia-book">https://www.urantia.org/urantia-book/listen-urantia-book</a>
<p>Listen to The Urantia Book</p>
<br>
<br>
<img src="https://f4.bcbits.com/img/a0417048697_16.jpg" alt="Image" class="thumbnail">
<a href="https://patobantonofficial.bandcamp.com/album/the-words-of-christ-7cd-box-set">https://patobantonofficial.bandcamp.com/album/the-words-of-christ-7cd-box-set</a>
<p>The Words Of Christ ~ 7CD Box Set by Pato Banton</p>
<br>
<br>
<img src="https://i1.sndcdn.com/avatars-TuNcv8Wh2ySvHkUf-Q0swoA-t500x500.jpg" alt="Image" class="thumbnail">
<a href="https://soundcloud.com/urantiagravity">https://soundcloud.com/urantiagravity</a>
<p>๐๐๐๐๐๐๐ CLAUDIA PIรON MEXICO,CITY., Mexico.</p>
<br>
<br>
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F6%2F61%2FUrantia_three-concentric-blue-circles-on-white_symbol.svg%2F1024px-Urantia_three-concentric-blue-circles-on-white_symbol.svg.png&f=1&nofb=1&ipt=ba41e15a7f759719097f2f55a58e99831355f4200e6f247ed8b85626c3771c62&ipo=images" alt="Image" class="thumbnail">
<a href="https://soundcloud.com/dipti-bhakti">https://soundcloud.com/dipti-bhakti</a>
<p>Dipti Bhakti, Urantia</p>
<br>
<br>
<img src="https://i1.sndcdn.com/avatars-nbx7Tj1gXMmt2dEK-kp7D3A-t500x500.jpg" alt="Image" class="thumbnail">
<a href="https://soundcloud.com/nashira-kat">https://soundcloud.com/nashira-kat</a>
<p>Urantia, Nashira Kat</p>
<br>
<br>
<img src="https://i1.sndcdn.com/avatars-000179579920-qcs4sg-t500x500.jpg" alt="Image" class="thumbnail">
<a href="https://soundcloud.com/urantiabandco">https://soundcloud.com/urantiabandco</a>
<p>Urantia, Bogota, Colombia</p>
<br>
<br>
<img src="https://i1.sndcdn.com/avatars-000713730337-nazkvk-t500x500.jpg" alt="Image" class="thumbnail">
<a href="https://soundcloud.com/vinnymn">https://soundcloud.com/vinnymn</a>
<p>UrAnTiA, vinicius nazario
cascavel, Brazil</p>
<br>
<br>
<img src="https://i1.sndcdn.com/avatars-5TT5U5EOKRNMLaSw-OvFKlg-t500x500.jpg" alt="Image" class="thumbnail">
<a href="https://soundcloud.com/extra-terestri">https://soundcloud.com/extra-terestri</a>
<p>Extra Terestri, Timisoara, Netherlands.</p>
<br>
<br>
<img src="https://yt3.ggpht.com/iNpEeQJfkbry87wnJ3qDIzeAnxsNlRXavRl3SMJJ5Uww5ELRjcnh2vfbENu4ocU8i6cymHfe=s88-c-k-c0x00ffffff-no-nd-rj" alt="Image" class="thumbnail">
<a href="https://www.youtube.com/watch?v=awzNHuGqoMc">https://www.youtube.com/watch?v=awzNHuGqoMc</a>
<p>Tim McGraw - Humble And Kind (Official Video)</p>
<br>
<br>
</div>
<div class="content-container" id="Education_and_Courses">
<h2>Education & Courses</h2>
<br>
<br>
<img src="https://static.wixstatic.com/media/123499_2c5b0dbb4c47499ca7da2af18eba9ebf~mv2.png/v1/fill/w_183,h_183,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/Original%20UUI%20Tree%20Logo_Transparent.png" alt="Image" class="thumbnail">
<a href="https://www.urantiauniversity.org/">https://www.urantiauniversity.org/</a>
<p>UrantiaUniversity Institute (UUI) was founded in 2009 to provide a variety of online educational opportunities focused on the integrated study of religion, science, and philosophy for students of the Urantia revelation.</p>
<br>
<br>
<img src="https://www.urantia.org/sites/default/files/u4/new-urantia-cover-1.png" alt="Image" class="thumbnail">
<a href="https://www.urantia.org/urantia-book/study">https://www.urantia.org/urantia-book/study</a>
<p>Study The Urantia Book.</p>
<br>
<br>
<img src="https://urantia-association.org/wp-content/themes/urantia/images/logo.png" alt="Image" class="thumbnail">
<a href="https://urantia-association.org/free-online-courses/">https://urantia-association.org/free-online-courses/</a>
<p>Urantia Book Internet School (UBIS).</p>
<br>
<br>
</div>
<div class="content-container" id="Events_and_Communities">
<h2>Events & Communities</h2>
<br>
<br>
<img src="https://urantianow.com/wp-content/uploads/2015/05/urantianow_logo_large-360x73.png" alt="Image" class="thumbnail">
<a href="https://urantianow.com/urantia-network-map/">https://urantianow.com/urantia-network-map/</a>
<p>Urantia communities map for travel and study groups.</p>
<br>
<br>
<img src="https://scontent-lga3-2.xx.fbcdn.net/v/t1.6435-9/49666965_10215837801372100_1341839824419553280_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=8631f5&_nc_ohc=jsCF_o9bqjYAX9Qh0ks&_nc_ht=scontent-lga3-2.xx&oh=00_AfDM-i2CDjhe0XIrcE023ZjufUuVfSfnivNHMp8_EZzBCw&oe=64F16413" alt="Image" class="thumbnail">
<a href="https://www.facebook.com/groups/urantiagroup">https://www.facebook.com/groups/urantiagroup</a>
<p>Urantia.</p>
<br>
<br>
<img src="https://scontent-lga3-1.xx.fbcdn.net/v/t1.6435-9/126518009_10221356705741260_8196904722237451240_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=8631f5&_nc_ohc=GLfYqBYFEskAX_2y4cP&_nc_ht=scontent-lga3-1.xx&oh=00_AfDG1GgAs4LEV-EvZpbhJzyPp1Q_4FwvY_YxoHiQoYyAlA&oe=64F14600" alt="Image" class="thumbnail">
<a href="https://www.facebook.com/groups/daughtersofthedivinemonther">https://www.facebook.com/groups/daughtersofthedivinemonther</a>
<p>Daughters of the Divine Mother.</p>
<br>
<br>
<img src="https://scontent-lga3-2.xx.fbcdn.net/v/t31.18172-8/25074762_2412530342305798_5666825970525725199_o.jpg?_nc_cat=109&ccb=1-7&_nc_sid=8631f5&_nc_ohc=PCjFUGAZLTIAX-W9F6T&_nc_ht=scontent-lga3-2.xx&oh=00_AfCSdF5ezeWHA8UMlhgmaZeVY88AlmkUUSEe_KRXw18qKA&oe=64F15E6F" alt="Image" class="thumbnail">
<a href="https://www.facebook.com/groups/952754404869852">https://www.facebook.com/groups/952754404869852</a>
<p>URANTIA AFRICA.</p>
<br>
<br>
<img src="https://scontent-lga3-2.xx.fbcdn.net/v/t1.6435-9/130304632_10224288638542110_8381864914208467348_n.jpg?_nc_cat=107&ccb=1-7&_nc_sid=8631f5&_nc_ohc=K-Jmmi8bHHsAX9_eY6S&_nc_ht=scontent-lga3-2.xx&oh=00_AfC_oNx_xoNQhVn93mn6iVJrrhj9Jg6hBFAPkpvR5M5HNw&oe=64F13FB5" alt="Image" class="thumbnail">
<a href="https://www.facebook.com/groups/472102592836807">https://www.facebook.com/groups/472102592836807</a>
<p>Urantian Artisans.</p>
<br>
<br>
<img src="https://www.urantiastudygroup.org/images/urantiastudygroup.org.gif" alt="Image" class="thumbnail">
<a href="https://www.urantiastudygroup.org/en">https://www.urantiastudygroup.org/en</a>
<p>Find a Urantia Book Study Group.</p>
<br>
<br>
<img src="https://scontent-lga3-2.xx.fbcdn.net/v/t39.30808-6/325780750_733485737999355_6713254129522002199_n.jpg?stp=dst-jpg_p600x600&_nc_cat=105&ccb=1-7&_nc_sid=8631f5&_nc_ohc=76BAIrgLdCIAX81JDK8&_nc_ht=scontent-lga3-2.xx&oh=00_AfAIm4z1jU9qwOQznVu4xGNAcMPVKISGAwbtxlidCk5VHQ&oe=64CDDAD1" alt="Image" class="thumbnail">
<a href="https://www.facebook.com/groups/patobantonsspiritualfamily">https://www.facebook.com/groups/patobantonsspiritualfamily</a>
<p>Pato Banton's Spiritual FAMILY.</p>
<br>
<br>
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Flogos-world.net%2Fwp-content%2Fuploads%2F2020%2F12%2FDiscord-Emblem.png&f=1&nofb=1&ipt=46d12df9adb01ba04959c3914e9674293dfa8925275322e2b3c54e64c45c2426&ipo=images" alt="Image" class="thumbnail">
<a href="https://discord.gg/5yxusQvf">https://discord.gg/5yxusQvf</a>
<p>Urantian Think Tank</p>
<br>
<br>
</div>
<div class="content-container" id="Organizations">
<h2>Organizations</h2>
<br>
<br>
<img src="https://www.urantiaunited.org/images/header.jpg" alt="Image" class="thumbnail">
<a href="http://www.urantiaunited.org/">http://www.urantiaunited.org/</a>
<p>The purpose of Urantia United is to serve as a gateway to four major organizations which are united in the goal of bringing The Urantia Book and its teachings to the world.</p>
<br>
<br>
<img src="https://urantia-association.org/wp-content/themes/urantia/images/logo.png" alt="Image" class="thumbnail">
<a href="https://urantia-association.org/">https://urantia-association.org/</a>
<p>Weโre an international group of students of The Urantia Book, inspired by its teachings to strive for new levels of enlightened living and service. We believe the spiritual regeneration of each individual can lead to the social transformations necessary for lasting world peace.</p>
<br>
<br>
<img src="https://www.urantia.org/sites/all/themes/yp_urantia_responsive/images/bg-banner.png" alt="Image" class="thumbnail">
<a href="https://www.urantia.org/">https://www.urantia.org/</a>
<p>Custodians of The Urantia Book since 1955.</p>
<br>
<br>
<img src="https://truthbook.com/wp-content/uploads/2021/05/TruthbookLogoRightWhite594x119.png" alt="Image" class="thumbnail">
<a href="https://truthbook.com">https://truthbook.com</a>
<p>Our mission is to encourage and assist individuals in developing a personal faith relationship with our Heavenly Father by sharing the supernal teachings of Jesus in The Urantia Book with them and nurturing them as believers.</p>
<br>
<br>
<img src="https://urantiabook.org/resources/images/UBFLogo-compressed.png" alt="Image" class="thumbnail">
<a href="https://urantiabook.org/">https://urantiabook.org/</a>
<p>To facilitate the worldwide spread of The Urantia Book and its teachings, to stimulate study, support individual spiritual growth, connect truth seekers, and ensure that reliable resources about The Urantia Book and related communities are available to people everywhere. </p>
<br>
<br>
<img src="https://urantia.nyc/wp-content/uploads/2017/01/usgnyLOGOx108x54blues-1.png" alt="Image" class="thumbnail">
<a href="https://urantia.nyc/">https://urantia.nyc/</a>
<p>Our Mission The Urantia Society of Greater New York (USGNY) is a local, New York area based organization with a global focus and outreach effort. In addition to numerous local dissemination projects, our society has translated The Urantia Book into several languages and makes available almost 30 different language versions of the text on this website.</p>
<br>
<br>
<img src="https://thechristexperiment.org/wp-content/uploads/2022/02/Logo-Aquafine-600x140.png" alt="Image" class="thumbnail">
<a href="https://thechristexperiment.org/">https://thechristexperiment.org/</a>
<p>The Christ Experiment "Uplifting the spiritual conversation".</p>
<br>
<br>
</div>
<div class="content-container" id="Projects_and_Products">
<h2>Projects & Products</h2>
<br>
<br>
<img src="https://www.edentia.us/assets/images/edentia.jpg" alt="Image" class="thumbnail">
<a href="https://www.edentia.us/">https://www.edentia.us/</a>
<p>Edentia.US Urantia Circles, Creating Heaven on Earth.</p>
<br>
<br>
<img src="https://cosmiccreations.biz/cdn/shop/t/2/assets/logo.png?v=45991147218057322201497280927" alt="Image" class="thumbnail">
<a href="https://cosmiccreations.biz/">https://cosmiccreations.biz/</a>
<p>Our purpose is the dissemination of The Urantia Book teachings and support of the Fifth Epochal Revelation of God to mankind. Profits from this project will be used to grow the business and product offerings as well as supporting the efforts of students, teachers, and leaders of this revelation both as individuals and organizations and in all countries, cultures, and religions. </p>
<br>
<br>
</div>
<div class="content-container" id="Submit_Your_Suggestions">
<h2>Submit Your Suggestions</h2>
<div>
<br>
Email your sugestions at: [email protected]
<br>
<br>
<br>
</div>
</div>
</div>
<script>
document.querySelectorAll('.nav-link').forEach(link => {
link.addEventListener('click', function (e) {
e.preventDefault();
var targetId = this.getAttribute('href');
var targetElement = document.querySelector(targetId);
var navbarHeight = document.querySelector('.navbar').offsetHeight;
window.scrollTo(0, targetElement.offsetTop - navbarHeight);
});
});
</script>
</body>
</html>