紅星照耀中國》真實記錄了埃德加·斯諾自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小時內與您取得聯系。