ChatGPT 創(chuàng)建網(wǎng)站

2023-12-08 17:26 更新

使用 ChatGPT-4 創(chuàng)建網(wǎng)站

使用 ChatGPT-4 創(chuàng)建網(wǎng)站就像有一個(gè) Web 開(kāi)發(fā)人員在您身邊為您提供幫助。

ChatGPT可以幫助你入門!

寫下你的想法

在使用生成式 AI 提供幫助之前,您必須弄清楚您希望網(wǎng)站包含哪些內(nèi)容。

要考慮的一些步驟:

  • 這個(gè)網(wǎng)站是關(guān)于什么的?
  • 你想要圖像嗎?
  • 您需要聯(lián)系信息嗎?

您提供的詳細(xì)信息越多,ChatGPT 的表現(xiàn)就越好。

生成網(wǎng)站代碼

在我們的示例中,我們將要求 ChatGPT 創(chuàng)建一個(gè)簡(jiǎn)單的網(wǎng)頁(yè):

例子

使用以下提示:

Create a simple webpage with my cupcake business name, "Magically Delicious", a short description, a few images, and my contact details (Genevieve Lavorre, Email: lavorre@tmn.com)

ChatGPT-4 的回應(yīng)可能是:

讓我們測(cè)試代碼:(我們用 Midjourney 生成了 3 張圖像)

<!DOCTYPE html>
<html>
<head>
  <title>Magically Delicious Cupcakes</title>
  <style>
    body {
      background-color: #f8f1f1;
      font-family: Arial, sans-serif;
    }

    h1, h2 {
      color: #ff85a2;
    }

    .container {
      width: 80%;
      margin: auto;
    }

    .images {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
    }

    .images img {
      width: 30%;
      border-radius: 10px;
    }
  </style>
</head>
<body>
  <div class="container">
    <h1>Welcome to Magically Delicious Cupcakes!</h1>

    <p>We provide a variety of gourmet cupcakes with magical flavors that take you to a world of deliciousness. We believe in quality, taste, and a sprinkle of magic in every cupcake!</p>

    <h2>Our Delicious Creations</h2>

    <div class="images">
      <img src="img_cupcake1.png" alt="Cupcake 1">
      <img src="img_cupcake2.png" alt="Cupcake 2">
      <img src="img_cupcake3.png" alt="Cupcake 3">
    </div>

    <h2>Contact Us</h2>
    
    <p>For orders and inquiries:</p>
    
    <p>Name: Genevieve Lavorre</p>
    <p>Email: <a href="mailto:lavorre@tmn.com">lavorre@tmn.com</a></p>
  </div>
</body>
</html>

看起來(lái)還不錯(cuò)!

查看代碼并迭代

通過(guò)ChatGPT的回應(yīng),這是一個(gè)很好的起點(diǎn)。

讓我們尋求更多幫助:

例子

使用以下提示:

Make the page look better

ChatGPT-4 的回應(yīng)可能是:

讓我們測(cè)試一下代碼:

例子

<!DOCTYPE html>
<html>
<head>
  <title>Magically Delicious Cupcakes</title>
  <style>
    body {
      background-color: #ffe0e9;
      font-family: 'Arial', sans-serif;
      color: #4d194d;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .container {
      width: 90%;
      margin: auto;
      max-width: 1200px;
    }

    h1, h2 {
      color: #ff85a2;
      text-align: center;
    }

    h1 {
      margin-top: 20px;
      font-size: 2.5em;
    }

    h2 {
      font-size: 2em;
      margin-top: 40px;
    }

    p {
      font-size: 1.2em;
      line-height: 1.6;
      text-align: justify;
    }

    .images {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .images img {
      width: 30%;
      border-radius: 10px;
      margin: 1%;
      box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    }

    .contact {
      text-align: center;
      margin-top: 50px;
      margin-bottom: 20px;
    }

    a {
      color: #4d194d;
      text-decoration: none;
    }

    a:hover {
      color: #ff85a2;
    }
  </style>
</head>
<body>
  <div class="container">
    <h1>Welcome to Magically Delicious Cupcakes!</h1>

    <p>We provide a variety of gourmet cupcakes with magical flavors that take you to a world of deliciousness. We believe in quality, taste, and a sprinkle of magic in every cupcake!</p>

    <h2>Our Delicious Creations</h2>

    <div class="images">
      <img src="img_cupcake1.png" alt="Cupcake 1">
      <img src="img_cupcake2.png" alt="Cupcake 2">
      <img src="img_cupcake3.png" alt="Cupcake 3">
    </div>

    <div class="contact">
      <h2>Contact Us</h2>
      <p>For orders and inquiries:</p>
      <p>Name: Genevieve Lavorre</p>
      <p>Email: <a href="mailto:lavorre@tmn.com">lavorre@tmn.com</a></p>
    </div>
  </div>
</body>
</html>

這是一個(gè)非常簡(jiǎn)單的頁(yè)面,但像這樣快速入門可以節(jié)省大量時(shí)間。


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)