Spaces:
No application file
No application file
Delete index.html
Browse files- index.html +0 -79
index.html
DELETED
@@ -1,79 +0,0 @@
|
|
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 |
-
body {
|
9 |
-
background: linear-gradient(135deg, #667eea, #764ba2);
|
10 |
-
font-family: 'Roboto', sans-serif;
|
11 |
-
color: #333;
|
12 |
-
display: flex;
|
13 |
-
justify-content: center;
|
14 |
-
align-items: center;
|
15 |
-
height: 100vh;
|
16 |
-
margin: 0;
|
17 |
-
}
|
18 |
-
|
19 |
-
.card {
|
20 |
-
background: linear-gradient(to right, #fff, #e2e2e2);
|
21 |
-
border-radius: 10px;
|
22 |
-
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
|
23 |
-
transition: all 0.3s ease-in-out;
|
24 |
-
width: 400px;
|
25 |
-
text-align: center;
|
26 |
-
padding: 20px;
|
27 |
-
position: relative;
|
28 |
-
}
|
29 |
-
|
30 |
-
.card:hover {
|
31 |
-
transform: scale(1.05);
|
32 |
-
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
|
33 |
-
}
|
34 |
-
|
35 |
-
.card h1 {
|
36 |
-
margin: 0;
|
37 |
-
font-size: 2em;
|
38 |
-
background: -webkit-linear-gradient(45deg, #6a11cb, #2575fc);
|
39 |
-
-webkit-background-clip: text;
|
40 |
-
-webkit-text-fill-color: transparent;
|
41 |
-
}
|
42 |
-
|
43 |
-
.card p {
|
44 |
-
font-size: 1.2em;
|
45 |
-
margin: 10px 0;
|
46 |
-
}
|
47 |
-
|
48 |
-
.card a {
|
49 |
-
color: #2575fc;
|
50 |
-
text-decoration: none;
|
51 |
-
transition: color 0.3s ease;
|
52 |
-
}
|
53 |
-
|
54 |
-
.card a:hover {
|
55 |
-
color: #6a11cb;
|
56 |
-
}
|
57 |
-
</style>
|
58 |
-
</head>
|
59 |
-
<body>
|
60 |
-
<div class="card">
|
61 |
-
<h1>Roadmap Academy</h1>
|
62 |
-
<p><b>Website:</b> <a href="https://roadmap.academy" target="_blank">roadmap.academy</a></p>
|
63 |
-
<p><b>Motto:</b> Polaris Prowess</p>
|
64 |
-
<p>Educational Technologies Company</p>
|
65 |
-
</div>
|
66 |
-
|
67 |
-
<script src="https://cdn.jsdelivr.net/npm/@huggingface/transformers/dist/transformers.esm.js"></script>
|
68 |
-
<script type="module">
|
69 |
-
import { Pipeline } from '@huggingface/transformers';
|
70 |
-
|
71 |
-
async function main() {
|
72 |
-
const sentimentPipeline = await Pipeline.for('sentiment-analysis');
|
73 |
-
console.log(await sentimentPipeline('I love using Hugging Face Transformers!'));
|
74 |
-
}
|
75 |
-
|
76 |
-
main();
|
77 |
-
</script>
|
78 |
-
</body>
|
79 |
-
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|