sativa commited on
Commit
3c71117
·
verified ·
1 Parent(s): f4d7759

Have Steampunk Dreams be the title of the website - Follow Up Deployment

Browse files
Files changed (2) hide show
  1. index.html +64 -16
  2. prompts.txt +7 -0
index.html CHANGED
@@ -1,20 +1,68 @@
1
  <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>My app</title>
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
- <meta charset="utf-8">
7
  <script src="https://cdn.tailwindcss.com"></script>
8
- </head>
9
- <body class="flex justify-center items-center h-screen overflow-hidden bg-white font-sans text-center px-6">
10
- <div class="w-full">
11
- <span class="text-xs rounded-full mb-2 inline-block px-2 py-1 border border-amber-500/15 bg-amber-500/15 text-amber-500">🔥 New version dropped!</span>
12
- <h1 class="text-4xl lg:text-6xl font-bold font-sans">
13
- <span class="text-2xl lg:text-4xl text-gray-400 block font-medium">I'm ready to work,</span>
14
- Ask me anything.
15
- </h1>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  </div>
17
- <img src="https://enzostvs-deepsite.hf.space/arrow.svg" class="absolute bottom-8 left-0 w-[100px] transform rotate-[30deg]" />
18
- <script></script>
19
- </body>
 
 
 
20
  </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>Steampunk Dreams</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
9
+ <script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://unpkg.com/feather-icons"></script>
12
+ <style>
13
+ .steampunk-bg {
14
+ background-color: #1a1a1a;
15
+ color: #d4af37;
16
+ font-family: 'Courier New', monospace;
17
+ }
18
+ .banner-container {
19
+ border: 2px solid #d4af37;
20
+ padding: 20px;
21
+ margin: 20px 0;
22
+ background-color: #2a2a2a;
23
+ }
24
+ .banner-img {
25
+ width: 100%;
26
+ max-width: 800px;
27
+ height: auto;
28
+ border: 1px solid #d4af37;
29
+ }
30
+ .contact-link {
31
+ color: #d4af37;
32
+ text-decoration: underline;
33
+ }
34
+ </style>
35
+ </head>
36
+ <body class="steampunk-bg">
37
+ <div class="container mx-auto px-4 py-8">
38
+ <h1 class="text-4xl font-bold text-center mb-8" data-aos="fade-down">Steampunk Dreams</h1>
39
+ <h2 class="text-2xl font-semibold text-center mb-8" data-aos="fade-down">Campaign Banner Ads</h2>
40
+
41
+ <div class="banner-container" data-aos="fade-right">
42
+ <img src="https://huggingface.co/spaces/sativa/steampunk/resolve/main/images/header.png" alt="Steampunk Adventure Banner" class="banner-img mb-4">
43
+ <p class="text-lg mb-4">Embark on a thrilling journey through time with our Steampunk Adventure collection. Gears, goggles, and grandeur await!</p>
44
+ </div>
45
+
46
+ <div class="banner-container" data-aos="fade-left">
47
+ <img src="https://huggingface.co/spaces/sativa/steampunk/resolve/main/images/Hero.png" alt="Mechanical Wonders Banner" class="banner-img mb-4">
48
+ <p class="text-lg mb-4">Discover the Mechanical Wonders of an alternate Victorian era where brass and steam power extraordinary inventions.</p>
49
+ </div>
50
+
51
+ <div class="banner-container" data-aos="fade-up">
52
+ <img src="https://huggingface.co/spaces/sativa/steampunk/resolve/main/images/footer.png" alt="Aether Dreams Banner" class="banner-img mb-4">
53
+ <p class="text-lg mb-4">Soar through the clouds in our Aether Dreams series, where airships rule the skies and adventure knows no bounds.</p>
54
+ </div>
55
+
56
+ <div class="text-center mt-8" data-aos="zoom-in">
57
+ <a href="mailto:[email protected]" class="contact-link text-xl">
58
+ <i data-feather="mail" class="inline mr-2"></i> Contact the designer for more information
59
+ </a>
60
+ </div>
61
  </div>
62
+
63
+ <script>
64
+ AOS.init();
65
+ feather.replace();
66
+ </script>
67
+ </body>
68
  </html>
prompts.txt CHANGED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ Name the Website Steampunk Dreams and H1 Tag: Add a header using an H1 tag followed by the words "Campaign Banner Ads."
2
+ Image Tags: Include 3 banner ads using the <img> tag for each.
3
+ Text: Write a short paragraph for each banner (use <p> tags).
4
+ Email Link: Include an <a> tag linking to the designer’s email with a prompt like “Contact the designer for more information.”
5
+ Additional Styling: Since this is HTML without CSS, the layout will flow top-to-bottom.
6
+ Use the 3 images provided in order with header hero and footer
7
+ Have Steampunk Dreams be the title of the website