个人简历html网页代码(使用chatgpt完成web开辟课的实行) ...

打印 上一主题 下一主题

主题 1016|帖子 1016|积分 3048

使用chatgpt完成web开辟课的实行
前提:
chatgpt的使用,建议看https://juejin.cn/post/7198097078005841980大概自己任意找
要学会用“出国旅游”软件
vscode的根本使用
炼丹开始:
炼丹质料:
  1. 帮我写一个html页面,内容是:个人简历,需要丰富的颜色和样式
复制代码
我这演示只练了一次,必要更严格的页面,多练几次就行
练好了框架自己改改就行



自己练好的丹:


另有一种图有二维码就懒得发出来了
代码:
text.html
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <title>个人简历</title>
  5.     <style>
  6.       body {
  7.         font-family: Arial, sans-serif;
  8.         color: rgb(37, 114, 126);
  9.         /* background-color: #c0c9ee; */
  10.         background-image: url('https://lkw-edu.oss-cn-chengdu.aliyuncs.com/2022/09/%E5%B4%A9%E5%B4%A9%E5%B4%A9.jpeg');
  11.         background-position: 50% 30%;
  12.         background-repeat: no-repeat;
  13.         
  14.     background-size:cover;
  15.         margin: 0;
  16.         padding: 0;
  17.       }
  18.       h1 {
  19.         font-size: 36px;
  20.         text-align: center;
  21.         margin-top: 50px;
  22.         color: #333;
  23.       }
  24.       h2 {
  25.         font-size: 24px;
  26.         color: #333;
  27.         margin-top: 30px;
  28.       }
  29.       p {
  30.         font-size: 16px;
  31.         line-height: 1.5;
  32.       }
  33.       .container {
  34.         max-width: 800px;
  35.         margin: 0 auto;
  36.         padding: 50px;
  37.         background-color: #fff;
  38.         border-radius: 15px;
  39.         box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  40.         opacity:0.8;
  41.       }
  42.       .section {
  43.         margin-top: 50px;
  44.       }
  45.       .section-title {
  46.         font-size: 20px;
  47.         font-weight: bold;
  48.         margin-bottom: 10px;
  49.       }
  50.       .experience {
  51.         margin-top: 30px;
  52.         /* 取消链接样式(下划线和颜色) */
  53.         text-decoration: none;
  54.         color: inherit;
  55.       }
  56.       .experience .title {
  57.         font-size: 18px;
  58.         font-weight: bold;
  59.         margin-bottom: 5px;
  60.       }
  61.       .experience .date {
  62.         font-size: 14px;
  63.         color: #666;
  64.         margin-bottom: 10px;
  65.       }
  66.       .skills {
  67.         margin-top: 30px;
  68.       }
  69.       .skills ul {
  70.         list-style: none;
  71.         margin: 0;
  72.         padding: 0;
  73.       }
  74.       .skills li {
  75.         display: inline-block;
  76.         background-color: #ddd;
  77.         color: #333;
  78.         font-size: 14px;
  79.         padding: 5px 10px;
  80.         margin-right: 10px;
  81.         margin-bottom: 10px;
  82.         border-radius: 5px;
  83.         
  84.         
  85.       }
  86.       .skills li:hover{
  87.         display: inline-block;
  88.         background-color: #ddd;
  89.         color: rgb(114, 107, 107);
  90.         font-size: 14px;
  91.         padding: 5px 10px;
  92.         margin-right: 10px;
  93.         margin-bottom: 10px;
  94.         border-radius: 5px;
  95.         
  96.       }
  97.       .contact {
  98.         margin-top: 30px;
  99.       }
  100.       .contact ul {
  101.         list-style: none;
  102.         margin: 0;
  103.         padding: 0;
  104.       }
  105.       .contact li {
  106.         margin-bottom: 10px;
  107.       }
  108.       .contact li a {
  109.         display: block;
  110.         color: rgb(37, 114, 126);
  111.         font-size: 16px;
  112.         text-decoration: none;
  113.         transition: color 0.15s ease-in-out;
  114.       }
  115.       .contact li a:hover {
  116.         color: #00bfff;
  117.       }
  118.     </style>
  119.   </head>
  120.   <body>
  121.     <div class="container">
  122.       <h1>个人简历</h1>
  123.       <div class="section">
  124.         <h2 class="section-title">个人信息</h2>
  125.         <p><strong>姓名:</strong>李XX</p>
  126.         <p><strong>性别:</strong>男</p>
  127.         <p><strong>出生日期:</strong>2001年11月21日</p>
  128.         <p><strong>手机号:</strong>136XXXXXX</p>
  129.         <p><strong>邮箱:</strong>2279719702@qq.com</p>
  130.       </div>
  131.       <div class="section">
  132.         <h2 class="section-title">学习经历</h2>
  133.         <a href="testbackEnd.html" class="experience">
  134.           <div class="title">后端开发</div>
  135.           <div class="date">2020年12月-至今</div>
  136.           <p>内容</p>
  137.           <ul>
  138.             <li>springboot,springcloud技术</li>
  139.             <!-- <li>MySQL,Redis,elasticsearch</li>
  140.             <li>CentOS,Docker,Nacos,Git,RabbitMQ</li> -->
  141.           </ul>
  142.         </a>
  143.       <a href="testhardware.html" class="experience">
  144.         <div class="title" >硬件开发</div>
  145.         <div class="date">2021年7月-2023年1月</div>
  146.         <p>内容</p>
  147.         <ul>
  148.           <li>esp8266,esp32</li>
  149.           <!-- <li>wifi,蓝牙,串口,模拟,数字</li>
  150.           <li>GPS,水质检测,摄像头,舵机,继电器,单片机服务器</li> -->
  151.         </ul>
  152.       </a>
  153.     </div>
  154.     <div class="section">
  155.       <h2 class="section-title">其他技能</h2>
  156.       <div class="skills">
  157.         <ul>
  158.           <li>HTML</li>
  159.           <li>CSS</li>
  160.         </ul>
  161.       </div>
  162.     </div>
  163.     <div class="section">
  164.       <h2 class="section-title">联系方式</h2>
  165.       <div class="contact">
  166.         <ul>
  167.           <li><a href="tel:13XXXXXX">电话:13XXXX</a></li>
  168.           <li><a href="tencent://AddContact/?fromId=45&fromSubId=1&subcmd=all&uin=2279719702&website=www.oicqzone.com">QQ:2279719702</a></li>
  169.           <li><a href="https://github.com/like-wen">GitHub:like-wen</a></li>
  170.           <li><a href="https://blog.csdn.net/m0_52070517?spm=1018.2226.3001.5343">CSDN: Like_wen</a></li>
  171.         </ul>
  172.       </div>
  173.     </div>
  174.   </div>
  175. </body>
  176. </html>
复制代码
testbackEnd.html
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <title>个人简历</title>
  5.     <style>
  6.       body {
  7.         font-family: Arial, sans-serif;
  8.         color: rgb(37, 114, 126);
  9.         /* background-color: #c0c9ee; */
  10.         background-image: url('https://lkw-edu.oss-cn-chengdu.aliyuncs.com/2022/09/%E5%B4%A9%E5%B4%A9%E5%B4%A9.jpeg');
  11.         background-position: 50% 30%;
  12.         background-repeat: no-repeat;
  13.         
  14.     background-size:cover;
  15.         margin: 0;
  16.         padding: 0;
  17.       }
  18.       h1 {
  19.         font-size: 36px;
  20.         text-align: center;
  21.         margin-top: 50px;
  22.         color: #333;
  23.       }
  24.       h2 {
  25.         font-size: 24px;
  26.         color: #333;
  27.         margin-top: 30px;
  28.       }
  29.       p {
  30.         font-size: 16px;
  31.         line-height: 1.5;
  32.       }
  33.       .container {
  34.         max-width: 800px;
  35.         margin: 0 auto;
  36.         padding: 50px;
  37.         background-color: #fff;
  38.         border-radius: 15px;
  39.         box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  40.         opacity:0.8;
  41.       }
  42.     </style>
  43.   </head>
  44.   <body>
  45.     <div class="container">
  46.       <h1>后端开发</h1>
  47.       <h2>第一段学习经历:</h2>
  48.       <p>springmvc,html,css,js,mysql,mybatisplus</p>
  49.       <h2>第二段学习经历:</h2>
  50.       <p>springboot,springcloud,vue,centos,redis,elasticsearch,nacos,docker,javafx,swagger,mqtt,git,rabbitMQ</p></p>
  51.       <h2>个人项目:</h2>
  52.       <div>
  53.         <p>五金磨具订单管理系统</p>
  54.        </div>
  55.       <div>
  56.         <p>基于es的文献搜索工具</p>
  57.         <img src="http://lkw-img.oss-cn-chengdu.aliyuncs.com/img/image-20230323002849516.png">
  58.       </div>
  59.       <div>
  60.         <p>惠小摊应用</p></p>
  61.         <img src="http://lkw-img.oss-cn-chengdu.aliyuncs.com/img/image-20230323003241039.png">
  62.       </div>
  63.       <div>
  64.         <p>基于MQTT的水上检测设备管理应用</p>
  65.         <img src="http://lkw-img.oss-cn-chengdu.aliyuncs.com/img/image-20230323003132086.png">
  66.       </div>
  67.   </div>
  68. </body>
  69. </html>
复制代码
testhardware.html
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <title>个人简历</title>
  5.     <style>
  6.       body {
  7.         font-family: Arial, sans-serif;
  8.         color: rgb(37, 114, 126);
  9.         /* background-color: #c0c9ee; */
  10.         background-image: url('https://lkw-edu.oss-cn-chengdu.aliyuncs.com/2022/09/%E5%B4%A9%E5%B4%A9%E5%B4%A9.jpeg');
  11.         background-position: 50% 30%;
  12.         background-repeat: no-repeat;
  13.         
  14.     background-size:cover;
  15.         margin: 0;
  16.         padding: 0;
  17.       }
  18.       h1 {
  19.         font-size: 36px;
  20.         text-align: center;
  21.         margin-top: 50px;
  22.         color: #333;
  23.       }
  24.       h2 {
  25.         font-size: 24px;
  26.         color: #333;
  27.         margin-top: 30px;
  28.       }
  29.       p {
  30.         font-size: 16px;
  31.         line-height: 1.5;
  32.       }
  33.       .container {
  34.         max-width: 800px;
  35.         margin: 0 auto;
  36.         padding: 50px;
  37.         background-color: #fff;
  38.         border-radius: 15px;
  39.         box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  40.         opacity:0.8;
  41.       }
  42.     </style>
  43.   </head>
  44.   <body>
  45.     <div class="container">
  46.       <h1>硬件开发</h1>
  47.       <h2>第一段学习经历:</h2>
  48.       <p>数字电路,esp8266,传感器,串口,wifi,舵机,单片机服务器,MQTT</p>
  49.       <h2>第二段学习经历:</h2>
  50.       <p>esp32,蓝牙,GPS,4G网络,网络摄像头</p></p>
  51.       <h2>个人项目:</h2>
  52.       <div>
  53.         <p>局域网html喂食机</p>
  54.         <img src="http://lkw-img.oss-cn-chengdu.aliyuncs.com/img/image-20230323001025777.png"></img>
  55.         <img src="http://lkw-img.oss-cn-chengdu.aliyuncs.com/img/image-20230323001414196.png"></img>
  56.       </div>
  57.       <div>
  58.         <p>基于esp32的水质检测与处理浮标设备</p>
  59.         <img src="http://lkw-img.oss-cn-chengdu.aliyuncs.com/img/image-20230323001919705.png">
  60.       </div>
  61.       <div>
  62.         <p>基于esp32 cam的网络摄像头</p>
  63.         <img src="http://lkw-img.oss-cn-chengdu.aliyuncs.com/img/image-20230323001930761.png">
  64.       </div>
  65.   </div>
  66. </body>
  67. </html>
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

盛世宏图

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表