flpolprojects commited on
Commit
8cb686a
·
verified ·
1 Parent(s): 0d2928e

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +40 -19
index.html CHANGED
@@ -1,19 +1,40 @@
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="ru">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Revolut - Крем от прыщей будущего</title>
7
+ <link rel="stylesheet" href="styles.css">
8
+ </head>
9
+ <body>
10
+ <div class="container">
11
+ <header>
12
+ <h1 class="kinetic-title">Revolut</h1>
13
+ <p class="subtitle">Будущее чистой кожи уже здесь</p>
14
+ </header>
15
+ <section class="hero">
16
+ <div class="product-image"></div>
17
+ <div class="hero-text">
18
+ <h2>Искры гениальности</h2>
19
+ <p>Нанотехнологии 2070 года уничтожают прыщи за секунды.</p>
20
+ <button class="cta-button" onclick="orderNow()">Заказать сейчас</button>
21
+ </div>
22
+ </section>
23
+ <section class="features">
24
+ <div class="feature-card" onmouseover="hoverEffect(this)">
25
+ <h3>Нано-очищение</h3>
26
+ <p>Молекулы проникают глубоко в поры.</p>
27
+ </div>
28
+ <div class="feature-card" onmouseover="hoverEffect(this)">
29
+ <h3>Эко-формула</h3>
30
+ <p>100% биоразлагаемый состав.</p>
31
+ </div>
32
+ <div class="feature-card" onmouseover="hoverEffect(this)">
33
+ <h3>ИИ-адаптация</h3>
34
+ <p>Крем подстраивается под ваш тип кожи.</p>
35
+ </div>
36
+ </section>
37
+ </div>
38
+ <script src="script.js"></script>
39
+ </body>
40
+ </html>