-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (51 loc) · 2.54 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EnchantAI - AI Art & Creativity</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#presentation">Presentation</a></li>
<li><a href="#videos">Videos</a></li>
<li><a href="#opensource">Open Source Code</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h1>Welcome to EnchantAI HOLAHOLAHOLA </h1>
<p>Discover the magic of AI art and creativity</p>
</section>
<section id="presentation">
<h2>Presentation</h2>
<p>Artificial Intelligence has revolutionized the creative landscape by opening up new possibilities and pushing the boundaries of artistic expression. EnchantAI showcases the fascinating world of AI-generated art, highlighting its potential to inspire, captivate, and challenge conventional notions of creativity. Explore our curated collection of videos and open-source code, and embark on a journey to redefine the future of art.</p>
</section>
<section id="videos">
<h2>Videos</h2>
<div class="video-container">
<!-- Embed YouTube videos here -->
<iframe width="560" height="315" src="https://www.youtube.com/embed/YourVideoID" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</section>
<section id="opensource">
<h2>Open Source Code</h2>
<p>EnchantAI is committed to promoting open-source resources to empower and inspire the AI art community. Explore the curated list of open-source AI art projects and tools below to kickstart your creative journey:</p>
<ul>
<li><a href="https://github.com/OpenAI/DALL-E" target="_blank">DALL-E</a> - Generate images from text</li>
<li><a href="https://github.com/lucidrains/stylegan2-pytorch" target="_blank">StyleGAN2-PyTorch</a> - Generate high-quality images using GANs</li>
<li><a href="https://github.com/magenta/magenta" target="_blank">Magenta</a> - AI-powered tools for music and art generation</li>
<!-- Add more open-source projects as needed -->
</ul>
</section>
</main>
<footer>
<p>© 2023 EnchantAI. All rights reserved.</p>
</footer>
</body>
</html>