vitaliy-sharandin commited on
Commit
9024623
·
1 Parent(s): d38ae85

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +75 -17
index.html CHANGED
@@ -1,19 +1,77 @@
1
  <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
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>Vitaliy Sharandin Data Science Portfolio</title>
7
+ <style>
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ background-color: #f4f4f4;
11
+ margin: 0;
12
+ padding: 0;
13
+ }
14
+ .container {
15
+ display: flex;
16
+ flex-direction: column;
17
+ align-items: center;
18
+ margin-top: 20px;
19
+ }
20
+ .project {
21
+ border: 2px solid #AAA;
22
+ border-radius: 10px;
23
+ padding: 10px;
24
+ margin: 10px;
25
+ background-color: #fff;
26
+ transition: background-color 0.3s ease;
27
+ display: flex;
28
+ align-items: center;
29
+ width: 80%;
30
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
31
+ }
32
+ .project:hover {
33
+ background-color: #e8e8e8;
34
+ }
35
+ .thumbnail {
36
+ margin-right: 15px;
37
+ border-radius: 5px;
38
+ width: 150px; /* Adjust as needed */
39
+ }
40
+ .project-info {
41
+ display: flex;
42
+ flex-direction: column;
43
+ }
44
+ .project-title {
45
+ font-size: 1.2em;
46
+ margin: 0;
47
+ }
48
+ .project-link {
49
+ text-decoration: none;
50
+ color: #1a76d2;
51
+ margin-top: 5px;
52
+ }
53
+ .project-link:hover {
54
+ text-decoration: underline;
55
+ }
56
+ </style>
57
+ </head>
58
+ <body>
59
+ <div class="container">
60
+ <h1>🚀 Vitaliy Sharandin Data Science Portfolio</h1>
61
+
62
+ <!-- Project 1 -->
63
+ <div class="project">
64
+ <img class="thumbnail" src="portfolio_projects/thumbnail/video_translation.jpg" alt="Video Translation Thumbnail">
65
+ <div class="project-info">
66
+ <h2 class="project-title">Video Translation with Speech Diarization and Voice Cloning</h2>
67
+ <a class="project-link" href="https://colab.research.google.com/github/vitaliy-sharandin/data_science_projects/blob/master/portfolio/nlp/language-translation/video-translation-with-speech-diarization-and-voice-cloning.ipynb" target="_blank">Open in Colab</a>
68
+ <a class="project-link" href="https://huggingface.co/spaces/vitaliy-sharandin/Video_translation_with_speaker_diarization_and_voice_cloning" target="_blank">View in Spaces</a>
69
+ </div>
70
+ </div>
71
+
72
+ <!-- Project 2 -->
73
+ <!-- Repeat the block above for each project, updating the src for img, and hrefs for a tags -->
74
+
75
+ </div>
76
+ </body>
77
  </html>