Skip to content

Commit a34b898

Browse files
committed
upload
1 parent f692ce4 commit a34b898

10 files changed

Lines changed: 181 additions & 40 deletions

database.rar

-40.6 MB
Binary file not shown.

javase/code/java_thread/.idea/workspace.xml

Lines changed: 38 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>我是人生当中第一12ABC个静态页面</title>
6+
</head>
7+
<body>
8+
<p>我也是一个块元素--独占一行(一个段落)</p>
9+
<p>我也是一个块元素--独占一行(一个段落)</p>
10+
<p>我也是一个块元素--独占一行(一个段落)</p>
11+
<p>我也是一个块元素--独占一行(一个段落)</p>
12+
<p>我也是一个块元素--独占一行(一个段落)</p>
13+
<div>我也是一个块元素-----经常会用到(布局用到)</div>
14+
<div>我也是一个块元素-----经常会用到(布局用到)</div>
15+
<div>我也是一个块元素-----经常会用到(布局用到)</div>
16+
<div>我也是一个块元素-----经常会用到(布局用到)</div>
17+
<h1>我代表的是网页中一级标题</h1>
18+
<h2>我代表的是网页中二级标题</h2>
19+
<h3>我代表的是网页中三级标题</h3>
20+
<h4>我代表的是网页中四级标题</h4>
21+
<h5>我代表的是网页中五级标题</h5>
22+
<h6>我代表的是网页中六级级标题</h6>
23+
<h1>我有事一级标题</h1>
24+
<h1>我有事一级标题</h1>
25+
<h1>我有事一级标题</h1>
26+
<h1>我有事一级标题</h1>
27+
<h1>我有事一级标题</h1>
28+
<h1>我有事一级标题</h1>
29+
<h1>我有事一级标题</h1>
30+
<!-- 注释 -->
31+
<div>
32+
<h3>我是三级标题---作为div子元素</h3>
33+
</div>
34+
</body>
35+
</html>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>Document</title>
6+
</head>
7+
<body>
8+
<!-- 无序列表 -->
9+
<ul>
10+
<li>吃饭</li>
11+
<li>睡觉</li>
12+
<li>打豆豆</li>
13+
</ul>
14+
<ol>
15+
<li>学习</li>
16+
<li>喝酒</li>
17+
<li>烫头</li>
18+
</ol>
19+
</body>
20+
</html>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>Document</title>
6+
</head>
7+
<body>
8+
<a href="http://www.sina.com">新浪</a>
9+
<a href="http://www.taobao.com">淘宝</a>
10+
<a href="http://www.baidu.com">百度</a>
11+
<span>我也是行内元素</span>
12+
<span>我也是行内元素span</span>
13+
<img src="" alt="默认文字">
14+
<!-- address:是2014年才新增的:用来显示地址 -->
15+
<address>我是一个地址</address>
16+
</body>
17+
</html>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>Document</title>
6+
</head>
7+
<body>
8+
<!-- address:块元素独占一行 -->
9+
<address>
10+
<iframe width="204" height="613" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://j.map.baidu.com/s/5BcIFb"></iframe>
11+
</address>
12+
</body>
13+
</html>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>Document</title>
6+
</head>
7+
<body>
8+
<ul>
9+
<li><a href="http://www.xinhuanet.com/politics/leaders/2019-11/30/c_1125292731.htm">习近平主持中央政治局第十九次集体学习</a></li>
10+
<li><a href="http://www.baidu.com">新浪</a></li>
11+
</ul>
12+
</body>
13+
</html>

web前端/code/05表单元素.html

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>Document</title>
6+
</head>
7+
<body>
8+
<form>
9+
<!-- 表单元素即为input标签 -->
10+
<p>
11+
用户名: <input type="text" />
12+
</p>
13+
<p>
14+
密&nbsp;&nbsp;码: <input type="password" />
15+
</p>
16+
<p>
17+
日历:<input type="date" />
18+
</p>
19+
<p>
20+
你喜欢的颜色: <input type="color" />
21+
</p>
22+
<p>
23+
你的身高: <input type="range" >
24+
</p>
25+
<p>
26+
你喜欢的食物
27+
<input type="checkbox" />烤鸭
28+
<input type="checkbox" />烤鸭
29+
<input type="checkbox" />烤鸭
30+
<input type="checkbox" />烤鸭
31+
<input type="checkbox" />烤鸭
32+
</p>
33+
<p>
34+
你喜欢那个国家?
35+
<input type="radio" name="A"/>中国
36+
<input type="radio" name="A"/>韩国
37+
<input type="radio" name="A"/>日本
38+
<input type="radio" name="A"/>美国
39+
</p>
40+
<p>
41+
<input type="submit" />
42+
</p>
43+
</form>
44+
</body>
45+
</html>

web前端/code/xiaomao.jpg

185 KB
Loading
1.07 MB
Binary file not shown.

0 commit comments

Comments
 (0)