红星照耀中国》真实记录了埃德加·斯诺自1936年6月至1936年10月在中国西北革命根据地进行实地采访的所见所闻,报道了中国和中国工农红军以及许多红军领袖、红军将领的情况。从多个方面展示中国共产党为民族解放而艰苦奋斗和牺牲奉献的精神,瓦解了种种歪曲、丑化共产党的谣言。斯诺通过对领导人和普通民众的观察和描述,把枯燥的红区党组织、各种文件、会议等内容转变为让读者读起来感到亲切生动的文字。2020年4月,《红星照耀中国》列入《教育部基础教育课程教材发展中心 中小学生阅读指导目录(2020年版)》初中段。今天小编给大家分享《红星照耀中国》章节概况~
第一章
https://shutu.cn/template/3175c3a7a4b936813aabb3504a4d6241.html
第二章
https://shutu.cn/template/7ec62eb63a512f3be723c33e81262baa.html
第三章
https://shutu.cn/template/9121927e4b69df774b5f9cc7ebebb764.html
第四章
https://shutu.cn/template/b1fe7f02a997be45a9ff5103b8741279.html
第五章
https://shutu.cn/template/6f9171c158fb43cdd15858d45b6d220d.html
第六章
https://shutu.cn/template/82882e012d6f445a9308deb1c1020d61.html
第七章
https://shutu.cn/template/87396e35d1f2c5cdcbb85890d3c68e35.html
第八章
https://shutu.cn/template/e2b3cd75374c356cc22569e0066811c2.html
第九章
https://shutu.cn/template/3cc3cd64cae82c454a7c160c801324ad.html
第十章
https://shutu.cn/template/cdc9db3c14134d3c22dcdb186527da72.html
第十一章
https://shutu.cn/template/9c1a12bea63f7b5c3cae5ff4b031633e.html
第十二章
https://shutu.cn/template/f81612748203f17be76e4479f8f1c4b0.html
《红星照耀中国》为国外记者开辟了采访苏区、报道中国革命和毛泽东的途径。在斯诺的影响和介绍下,外国记者纷纷前往中国苏区和抗日根据地。许多人从该书中了解了中国的抗日战争,了解毛泽东军事思想及中国共产党所领导的人民武装。同时世界上的许多爱好和平、支援和同情中国人民的人,从《红星照耀中国》中得到鼓励,走进反法西斯斗争的行列。
【树图思维导图】的模板中心给大家提供了许多关于《红星照耀中国》的思维导图,有需要的同学们赶快看看吧~
、表单在网页中的应用:登录、注册常用到表单
2、表单的语法:
<form method="post" action="result.html">
<p> 名字:<input name="name" type="text" > </p>
<p> 密码:<input name="pass" type="password" > </p>
<p>
<input type="submit" name="Button" value="提交"/>
<input type="reset" name="Reset" value="重填“/>
</p>
</form>
3、表单元素说明:
type:指定元素的类型。text、password、checkbox、radio、submit、reset、file、hidden、image 和 button,默认为 text.
name:指定表单元素的名称.
value:元素的初始值。type 为 radio时必须指定一个值.
size:指定表单元素的初始宽度。当 type 为 text 或 password时,表单元素的大小以字符为单位。对于其他类型,宽度以像素为单位.
maxlength:type为text 或 password 时,输入的最大字符数.
checked:type为radio或checkbox时,指定按钮是否是被选中.
4、示例:
<html >
<head>
<title>表单元素</title>
</head>
<body>
<!-- 表单 -->
<form method="POST" action="#">
<!-- 标签 -->
<label for="username">姓名:</label>
<!-- 文本框 value属性是设置默认显示的值-->
<input id="username" value="songzetong" />
<!-- 密码框 -->
<br/><label for="pwd">密码:</label>
<input type="password" id="pwd">
<br/>
<!-- 单选框 -->
<label for="sex">性别:</label>
<input type="radio" name="sex" checked/>男
<input type="radio" name="sex"/>女
<!-- 复选框 -->
<br/>
<label for="hobby">爱好:</label>
<input type="checkbox" name="hobby" id="hobby"/>听音乐
<input type="checkbox" name="hobby"/>旅游
<input type="checkbox" name="hobby"/>游泳
<br/>
<!-- 下拉列表 -->
<label for="month">月份:</label>
<select id="month"/>
<option>1月</option>
<option>2月</option>
<option>3月</option>
</select>
<br/>
<!-- 按钮 -->
<input type="reset" value="重置按钮"/>
<input type="submit" value="提交按钮"/>
<input type="button" value="普通按钮"/>
<br/>
<!-- 图片按钮 -->
<input type="image" src="one.jpg" width="200px" heigth="200px"/>
<br/>
<button type="submit">提交</button>
<button type="reset">重置</button>
<br/>
<label for="profile">
个人简介:
</label>
<!-- 多行文本域 -->
<textarea >本人已同意什么条款</textarea>
<br/>
<br/>
<br/>
<!-- 文件域 -->
<label for="upload">上传头像:</label>
<input type="file"/>
<!-- 邮箱 -->
<br/>
<label for="QQ邮箱">邮箱:</label>
<input type="email"/>
<br/>
<!-- 网址 -->
<label for="ur">网址:</label>
<input type="url"/>
<!-- 数字 -->
<br/>
<label for="shuzi">数字:</label>
<input type="number" name="shuzi" min="0" max="100" step="10"/>
<br/>
<label for="huakuai">滑块:</label>
<input type="range" />
<!-- 搜索框 -->
<br/>
<label for="sousuo">搜索</label>
<input type="search"/>
<!-- 隐藏域 -->
<br/>
<input type="hidden"value="1">
<!-- 只读:只能看不能修改,禁用:不能用 -->
<input value="我是只读的" readonly/>
<input type="button" value="我是禁用的" disabled/>
<!-- palceholder默认提示 -->
<br/>
<input placeholder="默认提示框"/>
<br/>
<!-- 文本框内容提示不能为空,否则不允许用户提交表单(网页上的必填项) -->
<input required="必填项"/>
<button type="submit">提交</button>
<br/>
<!-- 用户输入的内容必须符合正则表达式所指的规则,否则就不能提交表单-->
<input required pattern="^1[3578]\d{9}"/>
<button type="submit">提交</button>
</form>
</body>
</html>
效果图链接:file:///D:/ruanjian/VS/wenjianxiangmu/htmlThree/form.html
、页面使用CSS的好处:
有效的传递页面信息。
使用CSS美化过的页面文本,使页面漂亮、美观,吸引用户。
可以很好的突出页面的主题内容,使用户第一眼可以看到页面主要内容。
具有良好的用户体验。
2、美化网页的一些基本样式
A:字体样式:
font-family设置字体类型font-family:"隶书";
font-size设置字体大小font-size:12px;
font-style设置字体风格font-style:italic;
font-weight设置字体的粗细font-weight:bold;
font在一个声明中设置所有字体属性font:italic bold 36px "宋体";
举例:
body{font-family: Times,"Times New Roman", "楷体";}
h1{font-size:24px;} 单位->px:像素
h2{font-style:oblique;}
p{font-weight:bold;}
p span{font:oblique bold 12px "楷体";}
B:文本属性:
color设置文本颜色color:#00C;
text-align设置元素水平对齐方式text-align:right;
text-indent设置首行文本的缩进text-indent:20px;
line-height设置文本的行高line-height:25px;
text-decoration设置文本的装饰text-decoration:underline;
C:排版文本段落:
水平对齐方式:text-align:left|right|center|justify;
left把文本排列到左边。默认值:由浏览器决定
right把文本排列到右边
center把文本排列到中间
justify实现两端对齐文本效果
首行缩进:text-indent:em或px
行高:line-height:px
文本修饰:text-decoration:none|underline|overline|line_through
值说明
none默认值,定义的标准文本
underline设置文本的下划线
overline设置文本的上划线
line-through设置文本的删除线
垂直对齐方式:vertical-align属性:middle、top、bottom
文本阴影:text-shadow : color x-offset y-offset blur-radius;
D:背景颜色和背景图片:
background-color:"red";
background-image:url(图片路径);
background-repeat:
沿水平和垂直两个方向平铺
no-repeat:不平铺,即只显示一次
repeat-x:只沿水平方向平铺
repeat-y:只沿垂直方向平铺
background-position:X、Y方向关键词 水平方向的关键词:left、center、right
垂直方向的关键词:top、center、bottom
举例:
.title {
font-size:18px;
font-weight:bold;
color:#FFF;
text-indent:1em;
line-height:35px;
background:#C00 url(../image/arrow-down.gif) 205px 10px no-repeat;
}
线性渐变:linear-gradient ( position, color1, color2,…)
3、举例:
<head>
<title>家用电器</title>
</head>
<link rel="stylesheet" href="jiayongdianqi.css">
<body>
<div class="container">
<h2>家用电器</h2>
<div class="type">
<h6><a href="#">大家电</a></h6>
<ul>
<li> <a href="#">平板电视</a> <a href="#">洗衣机</a> <a href="#">冰箱</a></li>
<li> <a href="#">空调</a> <a href="#">烟机/灶具</a> <a href="#"> 热水器</a></li>
<li> <a href="#">冷柜/酒柜</a> <a href="#">消毒柜</a> <a href="#">家庭影院</a></li>
</ul>
<h6><a href="#">生活电器</a></h6>
<ul>
<li> <a href="#">电风扇</a> <a href="#">净化器</a> <a href="#">吸尘器</a></li>
<li> <a href="#">净水设备</a> <a href="#">挂烫机</a> <a href="#"> 电话机</a></li>
</ul>
<h6><a href="#">厨房电器</a></h6>
<ul>
<li> <a href="#">榨汁机</a> <a href="#">电压力锅</a> <a href="#">电饭煲</a></li>
<li> <a href="#">豆浆机</a> <a href="#">微波炉</a> <a href="#"> 电磁炉</a></li>
</ul>
<h6><a href="#">五金家装</a></h6>
<ul>
<li> <a href="#">淋浴/水槽</a> <a href="#">电动工具</a> <a href="#">手动工具</a></li>
<li> <a href="#">仪器仪表 </a> <a href="#">浴霸/排气 </a> <a href="#"> 灯具</a></li>
</ul>
</div>
</div>
</body>
</html>
li{
/* 去圆点 */
list-style: none;
}
/* 分类页面总宽度 */
.container{
width: 500px;
}
a{
/* 去超链接下划线 */
text-decoration: none;
}
/* 大标题字体 */
.container>h2{
font-size: 18px;
color: white;
font-weight: bolder;
line-height: 50px;
text-indent: 2px;
/*从上到下,0%开始颜色。50%颜色。70%颜色 */
background: linear-gradient(to bottom,#0467ac,#63a7d6,#b6dbf5);
}
css代码:
/* 所有电器分类内容 */
.type{
/* 首行缩进 */
text-indent: 4.5em;
/* 左外边距40px */
margin-left: 40px;
}
/* 电器分类 */
.type>h6{
font-size: 14px;
font-weight: bolder;
line-height: 30px;
background: linear-gradient(to bottom,#e4f1fa,#bddff7,#e4f1fa);
}
/* 电器分类中的A标签 */
.type>h6>a{
color:#0467ac;
}
/* 电器分类中的A标签鼠标悬浮效果 */
.type>h6>a:hover{
text-decoration: underline;
}
/* 分类内容字体 */
.type>ul>li{
font-size: 12px;
line-height: 26px;
}
/* 分类内容字体里面的A标签 */
.type>ul>li>a{
color: #969696;
}
/* 分类内容字体里面的A标签悬浮效果 */
.type>ul>li>a:hover{
color: #804000;
text-decoration: underline;
}
4、效果图链接:file:///D:/ruanjian/VS/wenjianxiangmu/htmlFive/jiayongdianqi.html
*请认真填写需求信息,我们会在24小时内与您取得联系。