-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (84 loc) · 4.1 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PALOS - Perpetual Autonomous Learning Operating System</title>
<!-- Bulma CSS CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.3/css/bulma.min.css" integrity="sha512-+eHxEOq+KXJG5Qs0e7+muqW2IiH4t8b+Pl4E8JvZtKj2VVtKqmf4p/8Mq9+5Tc1GczGXY1X5Td5TTUZ5VxL5Iw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Tailwind CSS CDN -->
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" integrity="sha512-+eS0eV8R2EJlqeHv1vOoAnkYRZxNpQl1XO3lJrXoJ+1/2GPlV9HhZtCjhKkukNlVpQGeY+xQ6Fy1N9z9Km7uWQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Animate.css CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" integrity="sha512-gs5L6D6XQ9Jz7SMkN9aB3Ie4iJGp+e7o9A0Mm8nHkbkqR3d1Yy2Hs1iX9YI0zBXyQw5S8h2Kf08eR3a9uHwRfg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- jQuery CDN -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yEx1q6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
</head>
<body>
<section class="hero is-primary is-bold">
<div class="hero-body">
<div class="container">
<h1 class="title">
PALOS
</h1>
<h2 class="subtitle">
<i class="fas fa-rocket"></i> Perpetual Autonomous Learning Operating System <i class="fas fa-rocket"></i>
</h2>
<p class="animate__animated animate__bounce animate__delay-1s">Inspired in PALOS de la Frontera where the dreams of Spaniards became an Empire</p>
</div>
</div>
</section>
<section class="section">
<div class="container">
<div class="content">
<h3 class="title"><i class="far fa-lightbulb"></i> Explore PALOS</h3>
<div class="box">
<article class="media">
<div class="media-content">
<div class="content">
<p>
<strong>PAL</strong>
<br>
Perpetual Autonomous Learning with Deeplearning and Machine Learning
</p>
<a href="path-to-your-pdf/PAL-30_9_2023.pdf" target="_blank" class="button is-link">
Download PDF <i class="fas fa-download"></i>
</a>
</div>
</div>
</article>
</div>
<div class="box">
<article class="media">
<div class="media-content">
<div class="content">
<p>
<strong>PALOS</strong>
<br>
Perpetual Autonomous Learning Operating System - Vicent3
</p>
<a href="path-to-your-pdf/Perpetual-Autonomous-Learning-Operating-System-Vicent3.pdf" target="_blank" class="button is-link">
Download PDF <i class="fas fa-download"></i>
</a>
</div>
</div>
</article>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="content has-text-centered">
<p>
<strong>PALOS</strong> by <a href="your-website-link">Your Organization</a>. The source code is licensed
<a href="http://opensource.org/licenses/mit-license.php">MIT</a>.
</p>
<p>Emojis courtesy of <a href="https://emojipedia.org/">Emojipedia</a></p>
</div>
</footer>
<script>
// Your custom jQuery code can go here.
</script>
</body>
</html>