Skip to content

Commit 77e1b1f

Browse files
committed
更新了第41-55天内容
1 parent 0a20594 commit 77e1b1f

13 files changed

+338
-1
lines changed
1.93 KB
Loading
Loading
125 KB
Loading
Loading
Loading
Loading
122 KB
Loading
Loading

Day41-55/code/polls_origin/login.html

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>用户登录</title>
6+
<style>
7+
#container {
8+
width: 400px;
9+
margin: 10px auto;
10+
}
11+
.input, form+a {
12+
margin: 20px 20px;
13+
width: 250px;
14+
}
15+
.input>label {
16+
display: inline-block;
17+
width: 70px;
18+
text-align: right;
19+
}
20+
.input:last-child {
21+
text-align: center;
22+
}
23+
input[type=text], input[type=password] {
24+
outline: none;
25+
}
26+
input[type=submit], input[type=reset] {
27+
width: 60px;
28+
}
29+
form+a {
30+
text-decoration: none;
31+
color: blue;
32+
}
33+
.captcha {
34+
width: 380px;
35+
}
36+
.captcha>img {
37+
vertical-align: middle;
38+
}
39+
.hint {
40+
margin-left: 20px;
41+
color: red;
42+
font-size: 0.8em;
43+
height: 20px;
44+
}
45+
</style>
46+
</head>
47+
<body>
48+
<div id="container">
49+
<h1>用户登录</h1>
50+
<hr>
51+
<form action="" method="post">
52+
<div class="input">
53+
<label>用户名:</label>
54+
<input type="text" name="username">
55+
</div>
56+
<div class="input">
57+
<label>密码:</label>
58+
<input type="password" name="password">
59+
</div>
60+
<div class="input captcha">
61+
<label>验证码:</label>
62+
<input type="text" name="captcha">
63+
<img id="code" src="images/captcha.jpg" width="120">
64+
</div>
65+
<div class="input">
66+
<input type="submit" value="登录">
67+
<input type="reset" value="重置">
68+
</div>
69+
</form>
70+
<a href="register.html">注册新用户</a>
71+
</div>
72+
</body>
73+
</html>
+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>用户注册</title>
6+
<style>
7+
#container {
8+
width: 400px;
9+
margin: 0 auto;
10+
}
11+
.input, form+a {
12+
margin: 20px 20px;
13+
width: 250px;
14+
}
15+
.input>label {
16+
display: inline-block;
17+
width: 80px;
18+
text-align: right;
19+
}
20+
.input:last-child {
21+
text-align: center;
22+
}
23+
input[type=text], input[type=password] {
24+
outline: none;
25+
}
26+
input[type=submit], input[type=reset] {
27+
width: 60px;
28+
}
29+
form+a {
30+
text-decoration: none;
31+
color: blue;
32+
}
33+
.hint {
34+
margin-left: 20px;
35+
color: red;
36+
font-size: 0.8em;
37+
height: 20px;
38+
}
39+
.mobile {
40+
width: 300px;
41+
}
42+
.photo {
43+
width: 350px;
44+
}
45+
.preview {
46+
margin: 10px 50px;
47+
}
48+
.intro {
49+
width: 720px;
50+
}
51+
</style>
52+
</head>
53+
<body>
54+
<div id="container">
55+
<h1>用户注册</h1>
56+
<hr>
57+
<form action="" method="post">
58+
<div class="input">
59+
<label>用户名:</label>
60+
<input type="text" name="username" required minlength="4" maxlength="20">
61+
</div>
62+
<div class="input">
63+
<label>密码:</label>
64+
<input type="password" name="password">
65+
</div>
66+
<div class="input">
67+
<label>确认密码:</label>
68+
<input type="password" name="repassword">
69+
</div>
70+
<div class="input mobile">
71+
<label>手机号:</label>
72+
<input type="tel" name="tel">
73+
<input type="button" id="sendBtn" value="发送验证码">
74+
</div>
75+
<div class="input">
76+
<label>验证码:</label>
77+
<input type="text" name="mobilecode">
78+
</div>
79+
<div class="input">
80+
<input type="submit" value="注册">
81+
<input type="reset" value="重置">
82+
</div>
83+
</form>
84+
<a href="login.html">返回登录</a>
85+
</div>
86+
</body>
87+
</html>
+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>学科信息</title>
6+
<style>
7+
#container {
8+
width: 80%;
9+
margin: 10px auto;
10+
}
11+
#main dt {
12+
font-size: 1.5em;
13+
}
14+
#main dd {
15+
font-size: 1.2em;
16+
}
17+
#main a {
18+
text-decoration: none;
19+
color: blue;
20+
}
21+
</style>
22+
</head>
23+
<body>
24+
<div id="container">
25+
<h1>千锋教育成都校区所有学科</h1>
26+
<hr>
27+
<div id="main">
28+
<dl>
29+
<dt>
30+
<a href="teachers.html">Python全栈+人工智能</a>
31+
<img src="images/hot-icon-small.png">
32+
</dt>
33+
<dd>
34+
Python(英国发音:/ˈpaɪθən/ 美国发音:/ˈpaɪθɑːn/)是一种广泛使用的解释型、高级编程、通用型编程语言,
35+
由吉多·范罗苏姆创造,第一版发布于1991年。可以视之为一种改良(加入一些其他编程语言的优点,如面向对象)的LISP。
36+
Python的设计哲学强调代码的可读性和简洁的语法(尤其是使用空格缩进划分代码块,而非使用大括号或者关键词)。
37+
相比于C++或Java,Python让开发者能够用更少的代码表达想法。不管是小型还是大型程序,该语言都试图让程序的结构清晰明了。
38+
</dd>
39+
</dl>
40+
<dl>
41+
<dt>
42+
<a href="">全栈软件测试</a>
43+
</dt>
44+
<dd>
45+
软件测试在规定的条件下对程序进行操作,以发现程序错误,衡量软件质量,并对其是否能满足设计要求进行评估的过程。
46+
软件测试有许多方法,但对复杂的产品运行有效测试不仅仅是研究过程,更是创造并严格遵守某些呆板步骤的大事。
47+
测试的其中一个定义:为了评估而质疑产品的过程;这里的“质疑”是测试员试着对产品做的事,而产品以测试者脚本行为反应作为回答。
48+
</dd>
49+
</dl>
50+
<dl>
51+
<dt>
52+
<a href="">JavaEE+分布式开发</a>
53+
<img src="images/hot-icon-small.png">
54+
</dt>
55+
<dd>
56+
Java是一种广泛使用的计算机编程语言,拥有跨平台、面向对象、泛型编程的特性,广泛应用于企业级Web应用开发和移动应用开发。
57+
该语言由当时任职于太阳微系统的詹姆斯·高斯林等人于1990年代初开发Java语言的雏形,最初被命名为Oak,
58+
目标设置在家用电器等小型系统的编程语言,应用在电视机、电话、闹钟、烤面包机等家用电器的控制和通信。
59+
由于这些智能化家电的市场需求没有预期的高,太阳计算机系统(Sun公司)放弃了该项计划。
60+
随着1990年代互联网的发展,Sun公司看见Oak在互联网上应用的前景,于是改造了Oak,于1995年5月以Java的名称正式发布。
61+
Java伴随着互联网的迅猛发展而发展,逐渐成为重要的网络编程语言。
62+
</dd>
63+
</dl>
64+
</div>
65+
</div>
66+
</body>
67+
</html>
+110
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>老师信息</title>
6+
<style>
7+
#container {
8+
width: 80%;
9+
margin: 10px auto;
10+
}
11+
.teacher {
12+
width: 100%;
13+
margin: 0 auto;
14+
padding: 10px 0;
15+
border-bottom: 1px dashed gray;
16+
overflow: auto;
17+
}
18+
.teacher div {
19+
float: left;
20+
}
21+
.photo {
22+
height: 140px;
23+
border-radius: 75px;
24+
overflow: hidden;
25+
margin-left: 20px;
26+
}
27+
.info {
28+
width: 75%;
29+
margin-left: 30px;
30+
}
31+
.info div {
32+
clear: both;
33+
margin: 5px 10px;
34+
}
35+
.info span {
36+
margin-right: 25px;
37+
}
38+
.info a {
39+
text-decoration: none;
40+
color: blue;
41+
}
42+
.user {
43+
float: right;
44+
margin: 10px 10px;
45+
}
46+
.user+h1 {
47+
clear: both;
48+
}
49+
#photo {
50+
border-radius: 32px 32px 32px 32px;
51+
}
52+
</style>
53+
</head>
54+
<body>
55+
<div id="container">
56+
<h1>Python全栈+人工智能学科的老师信息</h1>
57+
<hr>
58+
<div class="teacher">
59+
<div class="photo">
60+
<img src="images/luohao.png" height="140" alt="">
61+
</div>
62+
<div class="info">
63+
<div>
64+
<span><strong>姓名:骆昊</strong></span>
65+
<span>性别:男</span>
66+
<span>出生日期:1980年11月28日</span>
67+
</div>
68+
<div class="intro">
69+
10年以上软硬件产品和系统设计、研发、架构和管理经验,2003年毕业于四川大学,四川大学Java技术俱乐部创始人,
70+
四川省优秀大学毕业生,在四川省网络通信技术重点实验室工作期间,参与了2项国家自然科学基金项目、
71+
1项中国科学院中长期研究项目和多项四川省科技攻关项目,在国际会议和国内顶级期刊上发表多篇论文(1篇被SCI收录,3篇被EI收录),
72+
大规模网络性能测量系统DMC-TS的设计者和开发者,perf-TTCN语言的发明者。国内最大程序员社区CSDN的博客专家,
73+
在Github上参与和维护了多个高质量开源项目,精通C/C++、Java、Python、R、Swift、JavaScript等编程语言,
74+
擅长OOAD、系统架构、算法设计、协议分析和网络测量,主持和参与过电子政务系统、KPI考核系统、P2P借贷平台等产品的研发,
75+
一直践行“用知识创造快乐”的教学理念,善于总结,乐于分享。
76+
</div>
77+
<div class="comment">
78+
<a href="">好评</a>&nbsp;&nbsp;(<strong>100</strong>)
79+
&nbsp;&nbsp;&nbsp;&nbsp;
80+
<a href="">差评</a>&nbsp;&nbsp;(<strong>50</strong>)
81+
</div>
82+
</div>
83+
</div>
84+
<div class="teacher">
85+
<div class="photo">
86+
<img src="images/yuting.png" height="140" alt="">
87+
</div>
88+
<div class="info">
89+
<div>
90+
<span><strong>姓名:余婷</strong></span>
91+
<span>性别:女</span>
92+
<span>出生日期:1992年9月20日</span>
93+
</div>
94+
<div class="intro">
95+
5年以上移动互联网项目开发经验和教学经验,曾担任上市游戏公司高级软件研发工程师和移动端(iOS)技术负责人,
96+
参了多个企业级应用和游戏类应用的移动端开发和后台服务器开发,拥有丰富的开发经验和项目管理经验,
97+
以个人开发者和协作开发者的身份在苹果的AppStore上发布过多款App。精通Python、C、Objective-C、Swift等开发语言,
98+
熟悉iOS原生App开发、RESTful接口设计以及基于Cocos2d-x的游戏开发。授课条理清晰、细致入微,
99+
性格活泼开朗、有较强的亲和力,教学过程注重理论和实践的结合,在学员中有良好的口碑。
100+
</div>
101+
<div class="comment">
102+
<a href="">好评</a>&nbsp;&nbsp;(<strong>50</strong>)
103+
&nbsp;&nbsp;&nbsp;&nbsp;
104+
<a href="">差评</a>&nbsp;&nbsp;(<strong>100</strong>)
105+
</div>
106+
</div>
107+
</div>
108+
</div>
109+
</body>
110+
</html>

公开课/视频/视频链接.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
链接:https://pan.baidu.com/s/1xX5GWc7C2Fy8u9uKQl-2OQ 密码:oc66
1+
链接:https://pan.baidu.com/s/1W53OztYWPyQ8BwPV3nbY_Q 密码:67ws

0 commit comments

Comments
 (0)