Create a simple resume using html
Let’s take a look at the implementation effect first:
(Learning video sharing: html video tutorial)
html code:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>006</title> <style> .btbg{ text-align:center; } </style> </head> <body> <table border="0" align="center" width="100%" cellpadding="2" cellspacing="0"> <tr> <td align="center" height="60">个人简历</td> <tr> </table> <table class="tabtop" width="45%" border="1" cellpadding="1" cellspacing="2" align="center"> <tr> <td class="btbg" >姓名</td> <td width="10%" class="btbg" ></td> <td width="10%" class="btbg" >性别</td> <td width="10%" class="btbg" ></td> <td class="btbg" width="10%">出生日期</td> <td colspan="2" class="btbg" width="10%"></td> <td colspan="" class="btbg" width="10%" rowspan="4">照片</td> </tr> <tr> <td class="btbg">民族</td> <td class="btbg"></td> <td class="btbg">政治面貌</td> <td class="btbg"></td> <td class="btbg">婚姻状况</td> <td class="btbg"></td> </tr> <tr> <td class="btbg">现所在地</td> <td class="btbg"></td> <td class="btbg">籍贯</td> <td class="btbg"></td> <td class="btbg">学历</td> <td class="btbg"></td> </tr> <tr> <td width="8%" class="btbg">毕业学校</td> <td colspan="2" width="8%" class="btbg"></td> <td width="8%" class="btbg">专业</td> <td colspan="2" width="8%" class="btbg"></td> </tr> <tr> <td class="btbg" rowspan="5">学习经历</td> <td colspan="2" class="btbg">起止年月</td> <td colspan="2" class="btbg">就读(培训)学校</td> <td colspan="3" class="btbg">专业/课程</td> </tr> <tr> <td colspan="2" class="btbg"> </td> <td colspan="2" class="btbg"></td> <td colspan="3" class="btbg"></td> </tr> <tr> <td colspan="2" class="btbg"> </td> <td colspan="2" class="btbg"></td> <td colspan="3" class="btbg"></td> </tr> <tr> <td colspan="2" class="btbg"> </td> <td colspan="2" class="btbg"></td> <td colspan="3" class="btbg"></td> </tr> <tr> <td colspan="2" class="btbg"> </td> <td colspan="2" class="btbg"></td> <td colspan="3" class="btbg"></td> </tr> <tr> <td class="btbg" rowspan="5">工作经历</td> <td colspan="2" class="btbg">起止年月</td> <td colspan="2" class="btbg">工作单位</td> <td colspan="3" class="btbg">职责</td> </tr> <tr> <td colspan="2" class="btbg"> </td> <td colspan="2" class="btbg"></td> <td colspan="3" class="btbg"></td> </tr> <tr> <td colspan="2" class="btbg"> </td> <td colspan="2" class="btbg"></td> <td colspan="3" class="btbg"></td> </tr> <tr> <td colspan="2" class="btbg"> </td> <td colspan="2" class="btbg"></td> <td colspan="3" class="btbg"></td> </tr> <tr> <td colspan="2" class="btbg"> </td> <td colspan="2" class="btbg"></td> <td colspan="3" class="btbg"></td> </tr> <tr> <td colspan="1" class="btbg" rowspan="2">求职意向</td> <td colspan="7" class="btbg" rowspan="2"></td> </tr> </table> </body> </html>
Related recommendations: html tutorial
The above is the detailed content of Create a simple resume using html. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.

Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an
