sheikhed commited on
Commit
37c3488
·
verified ·
1 Parent(s): 810b137

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +57 -18
index.html CHANGED
@@ -1,19 +1,58 @@
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>Face Swap</title>
7
+ <style>
8
+ * {
9
+ margin: 0;
10
+ padding: 0;
11
+ box-sizing: border-box;
12
+ }
13
+ body, html {
14
+ height: 100%;
15
+ font-family: Arial, sans-serif;
16
+ }
17
+ body {
18
+ display: flex;
19
+ justify-content: center;
20
+ align-items: center;
21
+ background-color: #f4f4f4;
22
+ }
23
+ .card {
24
+ background-color: #fff;
25
+ padding: 20px;
26
+ border-radius: 10px;
27
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
28
+ text-align: center;
29
+ max-width: 400px;
30
+ width: 90%;
31
+ }
32
+ .card h1 {
33
+ font-size: 24px;
34
+ margin-bottom: 20px;
35
+ }
36
+ .card a {
37
+ text-decoration: none;
38
+ color: white;
39
+ background-color: #007bff;
40
+ padding: 10px 20px;
41
+ border-radius: 5px;
42
+ font-size: 16px;
43
+ display: inline-block;
44
+ }
45
+ .card a:hover {
46
+ background-color: #0056b3;
47
+ }
48
+ </style>
49
+ </head>
50
+ <body>
51
+
52
+ <div class="card">
53
+ <h1>Try fast face swap on now</h1>
54
+ <a href="https://swap.picfy.xyz/" target="_blank">Try Now</a>
55
+ </div>
56
+
57
+ </body>
58
  </html>