酷代码 AI
菜单
全部AI  /  热门  /  AI写代码神器
服务商

web语言写一页个人简历模板

当然可以!以下是一个简单的 HTML 和 CSS 代码示例,用于创建一个个人简历模板。你可以根据需要进行修改和扩展。 HTML (index.html) ```html <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>个人简历</title> <link rel="stylesheet" href="styles.css"> </head> <body> <div class="resume-container"> <header> <h1>张三</h1> <p>软件工程师 | 前端开发</p> </header> <section class="contact-info"> <h2>联系方式</h2> <ul> <li><strong>电话:</strong> 123-456-7890</li> <li><strong>邮箱:</strong> zhangsan@example.com</li> <li><strong>地址:</strong> 北京市朝阳区</li> <li><strong>LinkedIn:</strong> <a href="https://www.linkedin.com/in/zhangsan">LinkedIn</a></li> </ul> </section> <section class="education"> <h2>教育</h2> <ul> <li> <h3>北京大学</h3> <p>计算机科学与技术学士 - 2015年至2019年</p> </li> </ul> </section> <section class="experience"> <h2>工作经验</h2> <ul> <li> <h3>阿里巴巴 - 前端开发工程师</h3> <p>2019年7月至今</p> <ul> <li>负责多个项目的前端开发工作,使用 React 和 Vue 框架。</li> <li>优化页面性能,提升用户体验。</li> <li>与后端团队协作,确保前后端数据交互的高效性。</li> </ul> </li> <li> <h3>腾讯 - 实习生</h3> <p>2018年6月至2018年9月</p> <ul> <li>参与公司内部项目的前端开发,学习并应用现代前端技术。</li> <li>协助团队完成项目文档编写和技术支持。</li> </ul> </li> </ul> </section> <section class="skills"> <h2>技能</h2> <ul> <li>JavaScript, HTML, CSS</li> <li>React, Vue.js</li> <li>Node.js, Express</li> <li>Git, GitHub</li> <li>Webpack, Babel</li> </ul> </section> <section class="projects"> <h2>项目经验</h2> <ul> <li> <h3>在线教育平台</h3> <p>2019年10月至今</p> <ul> <li>设计并实现了一个响应式在线教育平台,支持多终端访问。</li> <li>使用 React 和 Redux 进行状态管理,提高代码可维护性。</li> <li>集成第三方支付接口,实现课程购买功能。</li> </ul> </li> </ul> </section> </div> </body> </html> ``` CSS (styles.css) ```css body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; } .resume-container { max-width: 800px; margin: 20px auto; padding: 20px; background-color: #fff; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } header { text-align: center; margin-bottom: 20px; } header h1 { font-size: 2.5em; margin: 0; } header p { font-size: 1.2em; color: #555; margin: 0; } section { margin-bottom: 20px; } section h2 { font-size: 1.8em; margin-bottom: 10px; border-bottom: 2px solid #333; padding-bottom: 5px; } section ul { list-style-type: none; padding: 0; } section li { margin-bottom: 10px; } section li h3 { font-size: 1.4em; margin: 0 0 5px; } section li p { margin: 0; color: #555; } section li ul { list-style-type: disc; margin-left: 20px; } a { color: #007BFF; text-decoration: none; } a:hover { text-decoration: underline; } ``` 将上述 HTML 和 CSS 代码分别保存为 `index.html` 和 `styles.css` 文件,然后在浏览器中打开 `index.html` 文件即可查看效果。你可以根据自己的需求进一步调整样式和内容。 [2024-11-08 17:50:26 | AI写代码神器 | 1198点数解答]

相关提问