如何使用html制作简历

今天跟大家分享一下,如何制作简历页面

如何使用html制作简历

从图片可以观察到,头部”个人简历”使用那几个常用的文本标签或者

,

即可;简历里有很多的栏,这就需要用到table标签来完成

使用table标签,需要明确要多少行多少列,tr表示行,th表示列,我的解题思路一般就是以最小的框来数,大致确定行列数.这里有15行7列

使用快捷键快速生成:

table>tr*15>th*7

如何使用html制作简历

从上面图片看到,红色框出来的是需要进行合并的,在table标签中,html提供了两个属性:

rowspan = "n" ,合并n行
colspan = "n" ,合并n列

使用方式:写在标签内,写在需要合并的第一行或者第一列,之后把下面对应的行或者列删除.

下面完整代码附上:

DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Documenttitle>

    <style>
        h2{
            text-align: center;
        }
        table{
            margin: auto;
        }
        th{
            width: 80px;
            height: 30px;
        }
        .tr1{
            height: 40px;
        }
    style>
head>
<body>
    <h2>个 人 简 历h2>
    //让简历边框为1,且合并边框
    <table border="1" style="border-collapse:collapse;">
        <tr>
            <th>姓 名th>
            <th>th>
            <th>性 别th>
            <th>th>
            <th>出生年月th>
            <th>th>
            <th rowspan="3">th>//合并头像
        tr>

        <tr>
            <th>籍 贯th>
            <th>th>
            <th>民 族th>
            <th>th>
            <th>计算机水平th>
            <th>th>
//被合并了,删除第七列
tr> <tr> <th>政治面貌th> <th>th> <th>身 高th> <th>th> <th>月薪要求th> <th>th>
//被合并了,删除第七列
tr> <tr> <th>所学专业th> <th>th> <th>学 历th> <th>th> <th>求职类型th> <th colspan="2">th> tr> <tr> <th>家庭住址th> <th colspan="2">th> <th colspan="2">兴趣特长th> <th colspan="2">th> tr> <tr> <th rowspan="2">现住址th> <th colspan="2" rowspan="2">th> <th colspan="2">联系电话th> <th colspan="2">th> tr> <tr> <th colspan="2">QQ号th> <th class="2" colspan="2">th> tr> <tr class="tr1"> <th rowspan="3">教育背景th> <th colspan="6">th> tr> <tr class="tr1"> <th colspan="6">th> tr> <tr class="tr1"> <th colspan="6">th> tr> <tr class="tr1"> <th rowspan="3">个人能力及专长th> <th colspan="6" rowspan="3">th> tr> <tr class="tr1" >tr> <tr class="tr1">tr> <tr class="tr1"> <th rowspan="3">工作经验th> <th colspan="6" rowspan="3">th> tr> <tr class="tr1">tr> <tr class="tr1">tr> table> body> html>

Original: https://www.cnblogs.com/pilpill/p/16709967.html
Author: Tmillion
Title: 如何使用html制作简历

原创文章受到原创版权保护。转载请注明出处:https://www.johngo689.com/587026/

转载文章受原作者版权保护。转载请注明原作者出处!

(0)

大家都在看

  • 登录功能

    登录功能分析 代码实现 LoginServlet类: UserService接口: UserServiceImpl实现类: UserDao接口: UserDaoImpl实现类: 登…

    Java 2023年6月6日
    089
  • Elasticsearch—DSL搜索实践

    POST http://192.168.2.223:9200/shop/_mapping { "properties": { "id": {…

    Java 2023年6月13日
    086
  • 二叉树的遍历

    二叉树的遍历 递归、迭代 //前序遍历 public List preorder(TreeNode root,List list){ if(root == null){ retur…

    Java 2023年6月7日
    077
  • application.yml 增加数据库连接,重启日志卡死

    SpringBoot引入JPA,application.ymlapplication.yml增加数据库链接参数,启动卡死,日志没有动,如下图 折腾好久,后面发现用 Maven的pa…

    Java 2023年6月13日
    068
  • 1、数组

    <span class=”pun”>&#x6570;&#x7EC4;&#x662F;&#x4E00;&#x79CD;&#…

    Java 2023年6月6日
    078
  • Java前后端AES加密解密

    之前要写接口aes加密传输,涉及到前后端交互,经常会遇到各种问题,这边记录一下,方便后期避坑 后端代码 import cn.hutool.core.codec.Base64; im…

    Java 2023年5月29日
    0104
  • Spring Cloud 配置application.yml与bootstrap.yml快速入门

    一、概述 _Spring Cloud Config_是 Spring 的客户端/服务器方法,用于跨多个应用程序和环境存储和提供分布式配置。 此配置存储理想地在 Git_版本控制下进…

    Java 2023年5月30日
    092
  • 15.log4j.properties

    set log levels log4j.rootLogger = INFO,stdout,E out console log4j.appender.stdout = org.ap…

    Java 2023年6月13日
    073
  • leetcode 513. Find Bottom Left Tree Value 找树左下角的值 (简单)

    给定一个二叉树的 根节点 root,请找出该二叉树的 最底层 最左边 节点的值。 假设二叉树中至少有一个节点。 示例 1: 输入: root = [2,1,3]输出: 1 示例 2…

    Java 2023年6月14日
    082
  • 精通 Spring Boot 42 讲

    404. 抱歉,您访问的资源不存在。 可能是网址有误,或者对应的内容被删除,或者处于私有状态。 代码改变世界,联系邮箱 contact@cnblogs.com 园子的商业化努力-困…

    Java 2023年5月30日
    087
  • spring-boot-starter-actuator

    使用: HTTP方法 路径 描述 鉴权 GET /autoconfig 查看自动配置的使用情况 true GET /configprops 查看配置属性,包括默认配置 true G…

    Java 2023年6月13日
    084
  • rocketmq实现延迟队列精确到秒级实现方案4-基于rocketmq 默认支持18个等级来改造

    rocketmq开源版本支持18个等级的延迟方案, 开源rocketmq延迟队列实现: Original: https://www.cnblogs.com/tomj2ee/p/15…

    Java 2023年6月5日
    072
  • SpringBoot多配置文件,切换环境

    多配置文件 properties配置方式 application.properties #通过active指定选用配置环境 spring.profiles.active=test …

    Java 2023年5月30日
    078
  • 看完这个,还不会DVMA,请你吃瓜

    学习渗透测试,特别是 Web 渗透,最头疼的无疑就是寻找靶机环境,通常是不同的漏洞需要找不同的靶机源码,而不同的源码通常 Web 架构又不一样,所以要找到一套能够练习所有 Web …

    Java 2023年6月8日
    084
  • java多线程基础学习

    一、多线程概述 1.1、进程和线程的概念 1.1.1、进程 1.1.2、线程 1.2、线程创建的方法 1.2.1、继承Thread类 1.2.2、重写Runnable接口 1.2….

    Java 2023年6月16日
    081
  • Spring不同类型参数传参

    当POJO中使用简单类型属性时, 参数名称与POJO类属性名保持一致 POJO类 public class User { &#xA0; &#xA0;private …

    Java 2023年6月6日
    083
亲爱的 Coder【最近整理,可免费获取】👉 最新必读书单  | 👏 面试题下载  | 🌎 免费的AI知识星球