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

这篇具有很好参考价值的文章主要介绍了个人简历html网页代码(使用chatgpt完成web开发课的实验)。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

使用chatgpt完成web开发课的实验

前提:
chatgpt的使用,建议看https://juejin.cn/post/7198097078005841980或者自己随便找

要学会用“出国旅游”软件

vscode的基本使用

炼丹开始:
炼丹材料:

帮我写一个html页面,内容是:个人简历,需要丰富的颜色和样式

我这演示只练了一次,需要更严格的页面,多练几次就行
练好了框架自己改改就行
html个人简介网页代码,前端,html,前端,css,人工智能,程序人生
html个人简介网页代码,前端,html,前端,css,人工智能,程序人生
html个人简介网页代码,前端,html,前端,css,人工智能,程序人生
自己练好的丹:html个人简介网页代码,前端,html,前端,css,人工智能,程序人生
html个人简介网页代码,前端,html,前端,css,人工智能,程序人生

还有一种图有二维码就懒得发出来了

代码:

text.html

<!DOCTYPE html>
<html>
  <head>
    <title>个人简历</title>
    <style>
      body {
        font-family: Arial, sans-serif;
        color: rgb(37, 114, 126);
        /* background-color: #c0c9ee; */
        background-image: url('https://lkw-edu.oss-cn-chengdu.aliyuncs.com/2022/09/%E5%B4%A9%E5%B4%A9%E5%B4%A9.jpeg');
        background-position: 50% 30%; 

        background-repeat: no-repeat;
        
    background-size:cover;
        margin: 0;
        padding: 0;
      }
      h1 {
        font-size: 36px;
        text-align: center;
        margin-top: 50px;
        color: #333;
      }
      h2 {
        font-size: 24px;
        color: #333;
        margin-top: 30px;
      }
      p {
        font-size: 16px;
        line-height: 1.5;
      }
      .container {
        max-width: 800px;
        margin: 0 auto;
        padding: 50px;
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        opacity:0.8;
      }
      .section {
        margin-top: 50px;
      }
      .section-title {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
      }
      .experience {
        margin-top: 30px;
        /* 取消链接样式(下划线和颜色) */
        text-decoration: none;
        color: inherit;
      }
      .experience .title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 5px;
      }
      .experience .date {
        font-size: 14px;
        color: #666;
        margin-bottom: 10px;
      }
      .skills {
        margin-top: 30px;
      }
      .skills ul {
        list-style: none;
        margin: 0;
        padding: 0;
      }
      .skills li {
        display: inline-block;
        background-color: #ddd;
        color: #333;
        font-size: 14px;
        padding: 5px 10px;
        margin-right: 10px;
        margin-bottom: 10px;
        border-radius: 5px;
        
        

      }
      .skills li:hover{
        display: inline-block;
        background-color: #ddd;
        color: rgb(114, 107, 107);
        font-size: 14px;
        padding: 5px 10px;
        margin-right: 10px;
        margin-bottom: 10px;
        border-radius: 5px;
        
      }
      .contact {
        margin-top: 30px;
      }
      .contact ul {
        list-style: none;
        margin: 0;
        padding: 0;
      }
      .contact li {
        margin-bottom: 10px;
      }
      .contact li a {
        display: block;
        color: rgb(37, 114, 126);
        font-size: 16px;
        text-decoration: none;
        transition: color 0.15s ease-in-out;
      }
      .contact li a:hover {
        color: #00bfff;
      }
    </style>
  </head>
  <body>
    <div class="container">
      <h1>个人简历</h1>
      <div class="section">
        <h2 class="section-title">个人信息</h2>
        <p><strong>姓名:</strong>李XX</p>
        <p><strong>性别:</strong></p>
        <p><strong>出生日期:</strong>2001年11月21日</p>
        <p><strong>手机号:</strong>136XXXXXX</p>
        <p><strong>邮箱:</strong>2279719702@qq.com</p>
      </div>
      <div class="section">
        <h2 class="section-title">学习经历</h2>
        <a href="testbackEnd.html" class="experience">
          <div class="title">后端开发</div>
          <div class="date">2020年12月-至今</div>
          <p>内容</p>
          <ul>
            <li>springboot,springcloud技术</li>
            <!-- <li>MySQL,Redis,elasticsearch</li>
            <li>CentOS,Docker,Nacos,Git,RabbitMQ</li> -->
          </ul>
        </a>
      <a href="testhardware.html" class="experience">
        <div class="title" >硬件开发</div>
        <div class="date">2021年7月-2023年1月</div>
        <p>内容</p>
        <ul>
          <li>esp8266,esp32</li>
          <!-- <li>wifi,蓝牙,串口,模拟,数字</li>
          <li>GPS,水质检测,摄像头,舵机,继电器,单片机服务器</li> -->
        </ul>
      </a>
    </div>
    <div class="section">
      <h2 class="section-title">其他技能</h2>
      <div class="skills">
        <ul>
          <li>HTML</li>
          <li>CSS</li>
        </ul>
      </div>
    </div>
    <div class="section">
      <h2 class="section-title">联系方式</h2>
      <div class="contact">
        <ul>
          <li><a href="tel:13XXXXXX">电话:13XXXX</a></li>
          <li><a href="tencent://AddContact/?fromId=45&fromSubId=1&subcmd=all&uin=2279719702&website=www.oicqzone.com">QQ:2279719702</a></li>
          <li><a href="https://github.com/like-wen">GitHub:like-wen</a></li>
          <li><a href="https://blog.csdn.net/m0_52070517?spm=1018.2226.3001.5343">CSDN: Like_wen</a></li>
        </ul>
      </div>
    </div>
  </div>
</body>
</html>

testbackEnd.html

<!DOCTYPE html>
<html>
  <head>
    <title>个人简历</title>
    <style>
      body {
        font-family: Arial, sans-serif;
        color: rgb(37, 114, 126);
        /* background-color: #c0c9ee; */
        background-image: url('https://lkw-edu.oss-cn-chengdu.aliyuncs.com/2022/09/%E5%B4%A9%E5%B4%A9%E5%B4%A9.jpeg');
        background-position: 50% 30%; 

        background-repeat: no-repeat;
        
    background-size:cover;
        margin: 0;
        padding: 0;
      }
      h1 {
        font-size: 36px;
        text-align: center;
        margin-top: 50px;
        color: #333;
      }
      h2 {
        font-size: 24px;
        color: #333;
        margin-top: 30px;
      }
      p {
        font-size: 16px;
        line-height: 1.5;
      }
      .container {
        max-width: 800px;
        margin: 0 auto;
        padding: 50px;
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        opacity:0.8;
      }
    </style>
  </head>
  <body>
    <div class="container">
      <h1>后端开发</h1>
      <h2>第一段学习经历:</h2>
      <p>springmvc,html,css,js,mysql,mybatisplus</p>
      <h2>第二段学习经历:</h2>
      <p>springboot,springcloud,vue,centos,redis,elasticsearch,nacos,docker,javafx,swagger,mqtt,git,rabbitMQ</p></p>
      <h2>个人项目:</h2>
      <div>
        <p>五金磨具订单管理系统</p>
       </div>
      <div>
        <p>基于es的文献搜索工具</p>
        <img src="http://lkw-img.oss-cn-chengdu.aliyuncs.com/img/image-20230323002849516.png">
      </div>
      <div>
        <p>惠小摊应用</p></p>
        <img src="http://lkw-img.oss-cn-chengdu.aliyuncs.com/img/image-20230323003241039.png">
      </div>
      <div>
        <p>基于MQTT的水上检测设备管理应用</p>
        <img src="http://lkw-img.oss-cn-chengdu.aliyuncs.com/img/image-20230323003132086.png">
      </div>
  </div>
</body>
</html>

testhardware.html文章来源地址https://www.toymoban.com/news/detail-797069.html

<!DOCTYPE html>
<html>
  <head>
    <title>个人简历</title>
    <style>
      body {
        font-family: Arial, sans-serif;
        color: rgb(37, 114, 126);
        /* background-color: #c0c9ee; */
        background-image: url('https://lkw-edu.oss-cn-chengdu.aliyuncs.com/2022/09/%E5%B4%A9%E5%B4%A9%E5%B4%A9.jpeg');
        background-position: 50% 30%; 

        background-repeat: no-repeat;
        
    background-size:cover;
        margin: 0;
        padding: 0;
      }
      h1 {
        font-size: 36px;
        text-align: center;
        margin-top: 50px;
        color: #333;
      }
      h2 {
        font-size: 24px;
        color: #333;
        margin-top: 30px;
      }
      p {
        font-size: 16px;
        line-height: 1.5;
      }
      .container {
        max-width: 800px;
        margin: 0 auto;
        padding: 50px;
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        opacity:0.8;
      }
    </style>
  </head>
  <body>
    <div class="container">
      <h1>硬件开发</h1>
      <h2>第一段学习经历:</h2>
      <p>数字电路,esp8266,传感器,串口,wifi,舵机,单片机服务器,MQTT</p>
      <h2>第二段学习经历:</h2>
      <p>esp32,蓝牙,GPS,4G网络,网络摄像头</p></p>
      <h2>个人项目:</h2>
      <div>
        <p>局域网html喂食机</p>
        <img src="http://lkw-img.oss-cn-chengdu.aliyuncs.com/img/image-20230323001025777.png"></img>
        <img src="http://lkw-img.oss-cn-chengdu.aliyuncs.com/img/image-20230323001414196.png"></img>
      </div>
      <div>
        <p>基于esp32的水质检测与处理浮标设备</p>
        <img src="http://lkw-img.oss-cn-chengdu.aliyuncs.com/img/image-20230323001919705.png">
      </div>
      <div>
        <p>基于esp32 cam的网络摄像头</p>
        <img src="http://lkw-img.oss-cn-chengdu.aliyuncs.com/img/image-20230323001930761.png">
      </div>
  </div>
</body>
</html>

到了这里,关于个人简历html网页代码(使用chatgpt完成web开发课的实验)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 个人简历css

    效果图:

    2024年01月24日
    浏览(31)
  • 2023个人简历的范文参考(合集)

        2023个人简历的范文参考【篇1】   基本信息   姓名:__   性别:__   出生日期:__   籍贯:__市   目前城市:__市   联系电话:__   E-mail:__   应聘方向   求职行业:金融/投资/证券,银行,保险   应聘职位:投资/基金项目经理,投资/理财顾问,客户主管/专

    2024年02月09日
    浏览(34)
  • VUE好看的个人简历模板

    作者:xcLeigh 文章地址:https://blog.csdn.net/weixin_43151418/article/details/135548970 VUE好看的个人简历模板 ,个人主页模板,模板源码包括首页、关于我、我的资历、项目经验、我的技能、联系我等模块,把自己优秀的一面和优秀的经历都展示出来,可以在这个模板下借用相关代码,代

    2024年01月19日
    浏览(35)
  • 应届生求职个人简历模板(合集)

        应届生求职个人简历模板1   基本信息   姓 名: 性别:   婚姻状况: 民族:   户 籍: 年龄:   现所在地: 身高:   联系电话:   电子邮箱:__   求职意向   希望岗位:Web前端开发   工作年限: 职称:无职称   求职类型:全职   到岗时间:随时   工作

    2024年02月08日
    浏览(37)
  • THREE.JS实现个人简历网站

    最近,在github上面找到了一个不错的技术介绍网站,主要使用 html+css+js 原生三件套写的。我在此基础之上利用three.js加了一点3D元素在里面,让这个网站看起来更炫酷。 改的时候,感觉原生还是比不上框架来的方便,后续有时间我会抽离一个 vue组件 的版本。 在线访问 :个人

    2024年02月01日
    浏览(36)
  • 安全运维工程师个人简历

    一份精心撰写的个人简历是迈向成功职业生涯的第一步。以下是小编精心整理的安全运维工程师简历案例,同时,幻主简历网提供海量优质简历模板和在线制作工具,助大家轻松撰写出专业、出色的安全运维工程师简历,欢迎大家来参考。 求职意向 求职类型:全职nbsp;nbsp;

    2024年03月28日
    浏览(36)
  • web前端课程作业设计:个人简历

    今天博主的web前端选修课结课了,期末大作业也提交了,今天写一篇博客把我的大作业分享给大家。 个人简历主页设计 应尽量包含以下内容: Ø 包含个人基本信息、教育背景、个人风采、与我联系四块内容 Ø 在页面组织上,以上内容可以通过主页链接到不同页面,也可以放

    2024年02月08日
    浏览(31)
  • 云计算工程师个人简历(精选篇)

    对于这样一群云计算工程师精英而言,如何将自己的专业技能与丰富经验准确地呈现在简历上,就显得尤为重要。以下是小编精选的云计算工程师个人简历参考,同时,幻主简历网还提供精美简历模板以及简历在线制作工具,欢迎大家阅读收藏。 幻主简历huanzhucv.com案例: 求

    2024年04月25日
    浏览(32)
  • 程序员个人简历范本(精选5篇)

    HR浏览一份简历也就25秒左右,如果你连「好简历」都没有,怎么能找到好工作呢? 如果你不懂得如何在简历上展示自己,或者觉得怎么改简历都不出彩,那请你一定仔细读完。 性别 男 年龄 24 学历 本科 张三 专业 计算机科学与技术 毕业院校 清华大学 毕业院校 github.io 个人

    2024年02月03日
    浏览(33)
  • 微信小程序个人简历界面(编辑版)

    1、微信小程序实现简单的个人简历界面,包含基本信息、教育背景、获奖证书、兴趣爱好等,简历信息支持修改编辑内容。 2、通过此文章,希望能带给更多学习微信小程序的伙伴们一点点经验,示例简洁,布局简单,喜欢的小伙伴,可以进我主页,分享更多学习经验和示例

    2024年02月12日
    浏览(31)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包