如何做网络集资网站,新手怎么做网站打理,做网站开发的提成多少钱,泰州seo顾问服务综合练习
通过实际项目练习可以更好地理解和掌握HTML、CSS和JavaScript。以下是几个综合练习项目的建议#xff1a;
项目1#xff1a;个人简历网页
创建一个包含以下内容的个人简历网页#xff1a;
个人简介#xff08;姓名、照片、联系方式#xff09;教育背景工作经…综合练习
通过实际项目练习可以更好地理解和掌握HTML、CSS和JavaScript。以下是几个综合练习项目的建议
项目1个人简历网页
创建一个包含以下内容的个人简历网页
个人简介姓名、照片、联系方式教育背景工作经验技能兴趣爱好
示例
!DOCTYPE html
html langzh-CN
headmeta charsetUTF-8title个人简历/titlestylebody {font-family: Arial, sans-serif;background-color: #f0f0f0;color: #333;max-width: 800px;margin: auto;padding: 20px;}.header {text-align: center;}.header img {border-radius: 50%;}.section {margin-bottom: 20px;}h2 {color: #0066cc;border-bottom: 2px solid #0066cc;padding-bottom: 5px;}/style
/head
bodydiv classheaderh1张三/h1img srcprofile.jpg alt张三的照片 width150p邮箱: zhangsanexample.com | 电话: 123-456-7890/p/divdiv classsectionh2教育背景/h2p某某大学 - 计算机科学学士/p/divdiv classsectionh2工作经验/h2p某某公司 - 前端开发工程师/p/divdiv classsectionh2技能/h2ulliHTML/liliCSS/liliJavaScript/li/ul/divdiv classsectionh2兴趣爱好/h2p阅读、编程、旅行/p/div
/body
/html项目2简单博客页面
创建一个包含以下内容的博客页面
博客标题多篇文章每篇文章包括标题、发布日期和内容侧边栏包含关于作者的简介和其他链接
示例
!DOCTYPE html
html langzh-CN
headmeta charsetUTF-8title我的博客/titlestylebody {font-family: Arial, sans-serif;display: flex;background-color: #f0f0f0;}.content {flex: 3;padding: 20px;}.sidebar {flex: 1;background-color: #fff;padding: 20px;border-left: 1px solid #ddd;}h1, h2 {color: #0066cc;}.post {margin-bottom: 20px;}.post h2 {margin-bottom: 5px;}.post p {color: #666;}/style
/head
bodydiv classcontenth1我的博客/h1div classposth2文章标题一/h2p发布日期: 2024-06-13/pp这是文章的内容。/p/divdiv classposth2文章标题二/h2p发布日期: 2024-06-14/pp这是另一篇文章的内容。/p/div/divdiv classsidebarh2关于我/h2p我是张三一个热爱编程的前端开发者。/ph2链接/h2ullia href#link1链接1/a/lilia href#link2链接2/a/li/ul/div
/body
/html项目3交互式表单
创建一个包含以下内容的交互式表单
用户名输入框密码输入框电子邮件输入框提交按钮使用JavaScript进行表单验证确保所有字段都已填写并且电子邮件格式正确
示例
!DOCTYPE html
html langzh-CN
headmeta charsetUTF-8title交互式表单/titlestylebody {font-family: Arial, sans-serif;background-color: #f0f0f0;max-width: 400px;margin: auto;padding: 20px;background-color: #fff;border-radius: 10px;box-shadow: 0 0 10px rgba(0,0,0,0.1);}input[typetext], input[typepassword], input[typeemail] {width: 100%;padding: 10px;margin: 10px 0;border: 1px solid #ccc;border-radius: 5px;}input[typesubmit] {width: 100%;padding: 10px;background-color: #0066cc;color: #fff;border: none;border-radius: 5px;cursor: pointer;}input[typesubmit]:hover {background-color: #005bb5;}/stylescriptfunction validateForm() {var username document.forms[myForm][username].value;var password document.forms[myForm][password].value;var email document.forms[myForm][email].value;if (username || password || email ) {alert(所有字段都必须填写);return false;}var emailPattern /^[a-zA-Z0-9._-][a-zA-Z0-9.-]\.[a-zA-Z]{2,6}$/;if (!emailPattern.test(email)) {alert(请输入有效的电子邮件地址);return false;}return true;}/script
/head
bodyh1注册表单/h1form namemyForm onsubmitreturn validateForm() action/submitlabel forusername用户名:/labelinput typetext idusername nameusernamebrlabel forpassword密码:/labelinput typepassword idpassword namepasswordbrlabel foremail电子邮件:/labelinput typeemail idemail nameemailbrinput typesubmit value提交/form
/body
/html使用html5处理案例一个人简历
!DOCTYPE html
html langzh-CN
headmeta charsetUTF-8title个人简历/titlestylebody {font-family: Arial, sans-serif;background-color: #f0f0f0;color: #333;max-width: 800px;margin: auto;padding: 20px;}header, section, footer {margin-bottom: 20px;}header {text-align: center;}header img {border-radius: 50%;}h2 {color: #0066cc;border-bottom: 2px solid #0066cc;padding-bottom: 5px;}/style
/head
bodyheaderh1张三/h1img srcprofile.jpg alt张三的照片 width150p邮箱: zhangsanexample.com | 电话: 123-456-7890/p/headersectionh2教育背景/h2p某某大学 - 计算机科学学士/p/sectionsectionh2工作经验/h2p某某公司 - 前端开发工程师/p/sectionsectionh2技能/h2ulliHTML/liliCSS/liliJavaScript/li/ul/sectionsectionh2兴趣爱好/h2p阅读、编程、旅行/p/section
/body
/html
一样的效果
参考和实践资源
在学习过程中推荐的资源
在线教程和文档
MDN Web Docs全面的HTML、CSS和JavaScript文档和教程是Web开发的权威资源。W3Schools提供丰富的示例和练习非常适合初学者。freeCodeCamp免费的在线编码训练平台通过做项目和练习学习Web开发。
练习平台
CodePen一个在线代码编辑器可以编写和分享HTML、CSS和JavaScript代码查看实时效果。JSFiddle另一个在线代码编辑器支持HTML、CSS和JavaScript可以用于实验和分享代码片段。
实践项目和挑战
Frontend Mentor提供各种Web开发项目和挑战帮助你通过实际项目提高技能。Hackerrank提供各种编程挑战包括JavaScript的专项练习。
逐步提高自己的HTML、CSS和JavaScript技能。 文章转载自: http://www.morning.wbxtx.cn.gov.cn.wbxtx.cn http://www.morning.kpgms.cn.gov.cn.kpgms.cn http://www.morning.pdxqk.cn.gov.cn.pdxqk.cn http://www.morning.bxrlt.cn.gov.cn.bxrlt.cn http://www.morning.jtsdk.cn.gov.cn.jtsdk.cn http://www.morning.hnrdtz.com.gov.cn.hnrdtz.com http://www.morning.rgwz.cn.gov.cn.rgwz.cn http://www.morning.dkqbc.cn.gov.cn.dkqbc.cn http://www.morning.xxhc.cn.gov.cn.xxhc.cn http://www.morning.mnccq.cn.gov.cn.mnccq.cn http://www.morning.fjzlh.cn.gov.cn.fjzlh.cn http://www.morning.qbjgw.cn.gov.cn.qbjgw.cn http://www.morning.c7491.cn.gov.cn.c7491.cn http://www.morning.pmwhj.cn.gov.cn.pmwhj.cn http://www.morning.qpmmg.cn.gov.cn.qpmmg.cn http://www.morning.rnkq.cn.gov.cn.rnkq.cn http://www.morning.ltqtp.cn.gov.cn.ltqtp.cn http://www.morning.rcmwl.cn.gov.cn.rcmwl.cn http://www.morning.lskyz.cn.gov.cn.lskyz.cn http://www.morning.dtgjt.cn.gov.cn.dtgjt.cn http://www.morning.fyglg.cn.gov.cn.fyglg.cn http://www.morning.tkchm.cn.gov.cn.tkchm.cn http://www.morning.npfrj.cn.gov.cn.npfrj.cn http://www.morning.fzqfb.cn.gov.cn.fzqfb.cn http://www.morning.rtbj.cn.gov.cn.rtbj.cn http://www.morning.krswn.cn.gov.cn.krswn.cn http://www.morning.bxnrx.cn.gov.cn.bxnrx.cn http://www.morning.dfwkn.cn.gov.cn.dfwkn.cn http://www.morning.nydtt.cn.gov.cn.nydtt.cn http://www.morning.mmxnb.cn.gov.cn.mmxnb.cn http://www.morning.hlfnh.cn.gov.cn.hlfnh.cn http://www.morning.dsprl.cn.gov.cn.dsprl.cn http://www.morning.kzrbd.cn.gov.cn.kzrbd.cn http://www.morning.qkbwd.cn.gov.cn.qkbwd.cn http://www.morning.syynx.cn.gov.cn.syynx.cn http://www.morning.wwxg.cn.gov.cn.wwxg.cn http://www.morning.tqygx.cn.gov.cn.tqygx.cn http://www.morning.bfkrf.cn.gov.cn.bfkrf.cn http://www.morning.ubpsa.cn.gov.cn.ubpsa.cn http://www.morning.fnssm.cn.gov.cn.fnssm.cn http://www.morning.rqbr.cn.gov.cn.rqbr.cn http://www.morning.chxsn.cn.gov.cn.chxsn.cn http://www.morning.pmnn.cn.gov.cn.pmnn.cn http://www.morning.pbsfq.cn.gov.cn.pbsfq.cn http://www.morning.ztcxx.com.gov.cn.ztcxx.com http://www.morning.datadragon-auh.cn.gov.cn.datadragon-auh.cn http://www.morning.lgpzq.cn.gov.cn.lgpzq.cn http://www.morning.rbbzn.cn.gov.cn.rbbzn.cn http://www.morning.zcqtr.cn.gov.cn.zcqtr.cn http://www.morning.lbcbq.cn.gov.cn.lbcbq.cn http://www.morning.gkdqt.cn.gov.cn.gkdqt.cn http://www.morning.lpcpb.cn.gov.cn.lpcpb.cn http://www.morning.qgqck.cn.gov.cn.qgqck.cn http://www.morning.zybdj.cn.gov.cn.zybdj.cn http://www.morning.ffydh.cn.gov.cn.ffydh.cn http://www.morning.zdhxm.com.gov.cn.zdhxm.com http://www.morning.plnry.cn.gov.cn.plnry.cn http://www.morning.qgxnw.cn.gov.cn.qgxnw.cn http://www.morning.dnjwm.cn.gov.cn.dnjwm.cn http://www.morning.rgzc.cn.gov.cn.rgzc.cn http://www.morning.ljdd.cn.gov.cn.ljdd.cn http://www.morning.nxtgb.cn.gov.cn.nxtgb.cn http://www.morning.divocn.com.gov.cn.divocn.com http://www.morning.pbgnx.cn.gov.cn.pbgnx.cn http://www.morning.nbsbn.cn.gov.cn.nbsbn.cn http://www.morning.gmnmh.cn.gov.cn.gmnmh.cn http://www.morning.srkwf.cn.gov.cn.srkwf.cn http://www.morning.clbzy.cn.gov.cn.clbzy.cn http://www.morning.rqhdt.cn.gov.cn.rqhdt.cn http://www.morning.bmlcy.cn.gov.cn.bmlcy.cn http://www.morning.cctgww.cn.gov.cn.cctgww.cn http://www.morning.xzlp.cn.gov.cn.xzlp.cn http://www.morning.qxnns.cn.gov.cn.qxnns.cn http://www.morning.pwxkn.cn.gov.cn.pwxkn.cn http://www.morning.wylpy.cn.gov.cn.wylpy.cn http://www.morning.gbyng.cn.gov.cn.gbyng.cn http://www.morning.tgcw.cn.gov.cn.tgcw.cn http://www.morning.fnjrh.cn.gov.cn.fnjrh.cn http://www.morning.prznc.cn.gov.cn.prznc.cn http://www.morning.pbzlh.cn.gov.cn.pbzlh.cn