NimaKL commited on
Commit
776d958
·
verified ·
1 Parent(s): eb61886

Create index.html

Browse files
Files changed (1) hide show
  1. index.html +44 -0
index.html ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Roadmap Academy</title>
7
+ <style>
8
+ .card {
9
+ box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
10
+ transition: 0.3s;
11
+ width: 300px;
12
+ border-radius: 5px;
13
+ padding: 15px;
14
+ text-align: center;
15
+ background-color: #f1f1f1;
16
+ }
17
+
18
+ .card:hover {
19
+ box-shadow: 0 8px 16px 0 rgba(0,0,0,0.6);
20
+ }
21
+ </style>
22
+ </head>
23
+ <body>
24
+ <div class="card">
25
+ <h1>Roadmap Academy</h1>
26
+ <p><b>Website:</b> <a href="https://roadmap.academy">roadmap.academy</a></p>
27
+ <p><b>Motto:</b> Polaris Prowess</p>
28
+ <p>An Educational Technologies Company</p>
29
+ </div>
30
+
31
+ <script src="https://cdn.jsdelivr.net/npm/@huggingface/transformers/dist/transformers.esm.js"></script>
32
+ <script type="module">
33
+ // Example of using transformers.js if needed for other purposes
34
+ import { Pipeline } from '@huggingface/transformers';
35
+
36
+ async function main() {
37
+ const sentimentPipeline = await Pipeline.for('sentiment-analysis');
38
+ console.log(await sentimentPipeline('I love using Hugging Face Transformers!'));
39
+ }
40
+
41
+ main();
42
+ </script>
43
+ </body>
44
+ </html>