位置: IT常识 - 正文

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

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

推荐整理分享个人简历html网页代码(使用chatgpt完成web开发课的实验)(个人简历html网页代码含效果图),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:个人简历html网页代码课本案例,个人简历html网页代码精美,个人简历html网页代码课本案例,个人简历html网页代码简单,个人简历html网页代码简单,个人简历html网页代码精美,个人简历html网页,个人简历html网页模板,内容如对您有帮助,希望把文章链接给更多的朋友!

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

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

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

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

vscode的基本使用

炼丹开始: 炼丹材料:

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

我这演示只练了一次,需要更严格的页面,多练几次就行 练好了框架自己改改就行 自己练好的丹:

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

代码:

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://www.yuucn.com/wp-content/uploads/2023/05/1684053810-bead5d39b59ef91.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://www.yuucn.com/wp-content/uploads/2023/05/1684053810-bead5d39b59ef91.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="https://www.yuucn.com/wp-content/uploads/2023/05/1684053790-bead5d39b59ef91.png"> </div> <div> <p>惠小摊应用</p></p> <img src="https://www.yuucn.com/wp-content/uploads/2023/05/1684053797-bead5d39b59ef91.png"> </div> <div> <p>基于MQTT的水上检测设备管理应用</p> <img src="https://www.yuucn.com/wp-content/uploads/2023/05/1684053803-bead5d39b59ef91.png"> </div> </div></body></html>

testhardware.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://www.yuucn.com/wp-content/uploads/2023/05/1684053810-bead5d39b59ef91.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="https://www.yuucn.com/wp-content/uploads/2023/05/1684053817-bead5d39b59ef91.png"></img> <img src="https://www.yuucn.com/wp-content/uploads/2023/05/1684053824-bead5d39b59ef91.png"></img> </div> <div> <p>基于esp32的水质检测与处理浮标设备</p> <img src="https://www.yuucn.com/wp-content/uploads/2023/05/1684053831-bead5d39b59ef91.png"> </div> <div> <p>基于esp32 cam的网络摄像头</p> <img src="https://www.yuucn.com/wp-content/uploads/2023/05/1684053837-bead5d39b59ef91.png"> </div> </div></body></html>
本文链接地址:https://www.jiuchutong.com/zhishi/297536.html 转载请保留说明!

上一篇:npm ERR! code ERESOLVEnpm ERR! ERESOLVE could not resolve dependency

下一篇:微信小程序 |基于百度AI从零实现人脸识别小程序(微信小程序开发一个多少钱)

  • 车船税是每个月交还是每年交
  • 如何查询纳税人状态是否正常
  • 建筑业小规模纳税人 扣除分包款 开票
  • 税务师职业考试
  • 增值税应税销售额包括哪些
  • 新会计准则中资产减值论文
  • 上市公司现金流充足说明什么
  • 在建工程转什么
  • 第三方汽车贷款平台有哪些
  • 如何理解合并报表
  • 采购合同安装服务费审价规定
  • 非盈利组织纳税筹划
  • 发票不验旧可以领取新的吗
  • 资本公积转增实收资本所有者权益会变吗
  • 进项大于销项怎么做账
  • 购买超市购物卡打几折
  • 存货变卖残值取得的收益计入哪个科目
  • 开票金额比收入高怎么办
  • 戴尔r710服务器系统安装详解
  • windows 11怎么用
  • 购买不动产会计分录
  • 税前扣除是好事吗
  • 荣耀路由器怎么重置
  • 水养绿萝怎么养护长得才茂盛
  • php语言之面向对象编程 educoder
  • 非货币性资产投资的会计处理
  • 异常生物见闻录
  • php分片上传文件
  • 企业所得税年报截止日期2023
  • 完美解决在ThinkPHP控制器中命名空间的问题
  • css过渡动画属性
  • 企业会计准则季报利润表本期金额怎么填
  • swoole扩展安装
  • web逻辑漏洞
  • 连带责任担保会被拘留吗
  • 季末资产总额怎么计算出来的
  • mysql5.7.33压缩包安装教程
  • 织梦tag标签怎么用
  • 个体户电子申报税流程
  • 房产税从何时计算缴纳
  • 出口销售收入要交印花税吗
  • 增值税药品发票明细
  • mysql常用语
  • 个税 收入
  • 定期定额征收和核定征收哪个好
  • 产品成本核算的方法
  • 丢失增值税专用发票的征管政策
  • 发票融资贷款怎么做账
  • 主播工资不发应该到哪里投诉
  • 代金券消费怎么入账
  • 管家婆进货单科目名称怎么录入?
  • 费用化资本化对税收的影响
  • 复式记账法的特点不包括
  • 年初资产总额怎么算
  • sql需要哪些基础
  • sqlserver远程连接设置
  • 腾讯云 阿里云 营收对比
  • fat32转换为ntfs分区命令
  • mac设置启动系统
  • hppusg.exe
  • windows软件删除
  • 系统恢复会怎么样
  • ubuntu磁盘清理工具
  • 在u盘安装软件插上就能用
  • win8系统出现自动修复
  • 微软被告
  • win8磁盘分区合并
  • 什么是selinux
  • win7任务栏还原到下面快捷键
  • win10切换登陆账户为administrator
  • linux的简单使用
  • 如何找回windows删除的文件
  • javascript正则匹配两个点
  • JavaScript中的对象一般分为
  • three.js碰撞检测
  • javascriptz
  • javascript的代码写在哪里
  • python async
  • 个税更正申报后,少缴纳的税款如何退回
  • 山西国税电子税务局电话
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设