Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

毕晟+第一次作业 #101

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions group2/毕晟/第一次作业/class_schedule.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
th{
color:red;
font-size: 20px;
text-align:center;
}
td{
color: darkslateblue;
font-size: 1em;
text-align:center;
}
52 changes: 52 additions & 0 deletions group2/毕晟/第一次作业/class_schedule.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Class Schedule</title>
<link rel="stylesheet" type="text/css" href="class_schedule.css">
</head>
<body>
<table border='1'>
<caption>课程表</caption>
<colgroup>
<col class="Number">
<col class="Monday">
<col class="Tuesday">
<col class="Wednesday">
<col class="Thursday">
<col class="Friday">
<col class="Saturday">
<col class="Sunday">
</colgroup>
<thead>
<tr>
<th colspan="8">Class Schedule</th>
</tr>
</thead>
<tbody>
<tr>
<th>Week</th>
<td>Monday</td>
<td>Tuesday</td>
<td>Wednesday</td>
<td>Thursday</td>
<td>Friday</td>
<td>Saturday</td>
<td>Sunday</td>
</tr>
<tr>
<th>1</th>
<td>Math</td>
<td>English</td>
<td>Chinese</td>
<td>Japanese</td>
<td>Science</td>
<td>PE</td>
<td>Art</td>
</tr>
</tbody>
</table>
</body>
</html>
23 changes: 23 additions & 0 deletions group2/毕晟/第一次作业/newSimpleForm.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>SimpleForm</title>
</head>
<body>
<form method="POST">
<p>用户名:<input type="text" name="username" placeholder="请输入用户名4-32位"
required minlength=4 maxlength=32 autofocus></p>
<p>密码:<input type="password" name="psword" placeholder="请输入密码"></p>
<p>Email:<input type="email" name="email" placeholder="请输入邮箱"></p>
<p>手机:<input type="text" name="phone" pattern="1\d{10}" placeholder="请输入手机号"></p>
<p>
<input type="radio" name="sex" value="male">男<br>
<input type="radio" name="sex" value="female">女
</p>
<p><input type="submit" name="input" value="Submit"></p>
</form>
</body>
</html>
49 changes: 49 additions & 0 deletions group2/毕晟/第一次作业/resume.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>个人简历</title>
</head>
<body>
<h3>个人信息</h3>
<hr>
<dl>
<dt>姓名:</dt>
<dd>小明</dd>
<dt>电话号码:</dt>
<dd>136XXXXYYYY</dd>
<dt>邮箱:</dt>
<dd>[email protected]</dd>
</dl>
<h3>教育经历</h3>
<hr>
<pre>
<b>华中科技大学</b> 21世纪专业 <time>2015-09</time>~<time>2019-07</time>
</pre>
<h3>项目经历</h3>
<hr>
<pre>
不知名企业可加简短介绍: XXX行业第二大XXX企业,核心产品包括XXX / XXX行业领军企业,拥有#个分公司和#名员工 / XXX领域x轮创业公司,
主要产品是XXX,拥有#用户

分析/撰写/策划/协助/负责/主导/独立完成/或其他动词(可参考 动词库) + 具体工作内容 + 通过什么动作
(如分析XXX数据、运用XXX 工具、与XXX协作 )+ 获得什么可量化成果(如完成客户年度审计工 作、撰写#份报告 、提升团队协作效率#%、
增加粉丝/关注#个)具体案例请参考案例库中“实习”系列案例
</pre>
<h3>个人技能及证书</h3>
<ul>
<li>语言
<dl>
<dt>英语:</dt>
<dd>CET-6,托福</dd>
<dt>日语:</dt>
<dd>N1</dd>
</dl>
</li>
<li>CCF(300分)</li>
<li>等</li>
</ul>
</body>
</html>