2024 chatgpt update

This commit is contained in:
Your a
2024-05-06 10:24:52 +03:00
parent 6e6445d44a
commit c8302bf3ae
8709 changed files with 190023 additions and 18711 deletions
+282 -2
View File
@@ -1,5 +1,5 @@
[![/Code - easy html site builder](https://flow-prompt-covers.s3.us-west-1.amazonaws.com/icon/realistic/real_4.png)](https://gptcall.net/chat.html?data=%7B%22contact%22%3A%7B%22id%22%3A%22cC8QmadHhlJjdafDaM8VF%22%2C%22flow%22%3Atrue%7D%7D)
# /Code - easy html site builder | [Start Chat](https://gptcall.net/chat.html?data=%7B%22contact%22%3A%7B%22id%22%3A%22cC8QmadHhlJjdafDaM8VF%22%2C%22flow%22%3Atrue%7D%7D)
Easily build beautiful sites with ease using /code.
@@ -22,6 +22,287 @@ If you've understood, then,
/code {{ What do you want built }}.
```
## Welcome Message
Sure, I can create a beautiful site with a night sky theme using HTML, CSS, and JavaScript. Here's the code:
```html
<!DOCTYPE html>
<html>
<head>
<title>Night Sky Theme</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Night Sky Theme</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<h2>Welcome to Night Sky Theme</h2>
<p>Experience the beauty of the night sky with our website.</p>
</section>
<section class="features">
<article>
<img src="https://source.unsplash.com/500x300/?stars" alt="Stars" />
<h3>Starry Skies</h3>
<p>Get mesmerized by the beauty of the stars that light up the night sky.</p>
</article>
<article>
<img src="https://source.unsplash.com/500x300/?moon" alt="Moon" />
<h3>Moonlight Magic</h3>
<p>Witness the magic of the moon as it illuminates the darkness of the night.</p>
</article>
<article>
<img src="https://source.unsplash.com/500x300/?nebula" alt="Nebula" />
<h3>Nebula Wonder</h3>
<p>Discover the wonders of the universe with our collection of nebula images.</p>
</article>
</section>
<section class="gallery">
<h2>Photo Gallery</h2>
<div class="images">
<img src="https://source.unsplash.com/600x400/?stars" alt="Stars" />
<img src="https://source.unsplash.com/600x400/?moon" alt="Moon" />
<img src="https://source.unsplash.com/600x400/?nebula" alt="Nebula" />
<img src="https://source.unsplash.com/600x400/?galaxy" alt="Galaxy" />
<img src="https://source.unsplash.com/600x400/?milkyway" alt="Milky Way" />
<img src="https://source.unsplash.com/600x400/?astronomy" alt="Astronomy" />
</div>
</section>
</main>
<footer>
<p>&copy; 2023 Night Sky Theme. All rights reserved.</p>
</footer>
<script src="app.js"></script>
</body>
</html>
```
```css
* {
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
background-color: #111;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #222;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
nav li {
margin-right: 10px;
}
nav a {
display: inline-block;
padding: 10px;
color: #fff;
text-decoration: none;
transition: background-color 0.3s ease;
}
nav a:hover {
background-color: #333;
}
main {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.hero {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 500px;
color: #fff;
background-image: url(https://source.unsplash.com/1600x900/?stars);
background-size: cover;
background-position: center;
text-align: center;
}
.hero h2 {
font-size: 48px;
margin-bottom: 20px;
}
.features {
display: flex;
justify-content: space-between;
margin-top: 50px;
}
.features article {
flex-basis: calc(33.33% - 20px);
## Conversation
**ASSISTANT**: Sure, I can create a beautiful site with a night sky theme using HTML, CSS, and JavaScript. Here's the code:
@@ -304,4 +585,3 @@ main {