您现在的位置是:首页 > 技术教程 正文

CSS--头歌(educoder)实训作业题目及答案

admin 阅读: 2024-03-30
后台-插件-广告管理-内容页头部广告(手机)

目录

CSS——基础知识

第1关: 初识CSS:丰富多彩的网页样式

第2关: CSS样式引入方式

CSS——基础选择器

第1关: CSS 元素选择器

第2关: CSS 类选择器

第3关: CSS id选择器

CSS——文本与字体样式

第1关: 字体颜色、类型与大小

第2关: 字体粗细与风格

第3关: 文本装饰与文本布局

CSS——背景样式

第1关: 背景颜色

第2关: 背景图片

第3关: 背景定位与背景关联

CSS——表格样式

第1关: 表格边框

第2关: 表格颜色、文字与大小


CSS从入门到精通——基础知识

第1关: 初识CSS:丰富多彩的网页样式

  1. html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Hello Worldtitle>
  6. <style type="text/css">
  7. body {
  8. text-align: center;
  9. }
  10. h1 {
  11. /* ********** BEGIN ********** */
  12. text-align: center;
  13. font-size: 40px;
  14. color: #62A8CB;
  15. /* ********** END ********** */
  16. }
  17. img {
  18. height: 250px;
  19. }
  20. p {
  21. /* ********** BEGIN ********** */
  22. color: grey;
  23. font-size: 18px;
  24. /* ********** END ********** */
  25. }
  26. style>
  27. head>
  28. <body>
  29. <h1>CSS让网页样式更丰富h1>
  30. <img src="https://www.educoder.net/attachments/download/189467">
  31. <p>使用CSS(Cascading Style Sheets),可以使网页样式更加的丰富多彩,它解决内容与表现分离的问题,提高了工作效率。p>
  32. body>
  33. html>

第2关: CSS样式引入方式

  1. style.css
  2. ```CSS
  3. body {
  4. font-family: 'Times New Roman', Times, serif;
  5. }
  6. div {
  7. border: 1px solid #000;
  8. overflow: hidden;
  9. padding: 0 1em .25em;
  10. }
  11. h1 {
  12. color: green;
  13. }
  14. p {
  15. /* ********** BEGIN ********** */
  16. font-weight: bold;
  17. /* ********** END ********** */
  18. }
  19. ```
  20. index.html
  21. ```html
  22. html>
  23. <html>
  24. <head>
  25. <meta charset="utf-8">
  26. <title>O Captain! My Captain!title>
  27. <link rel="stylesheet" href="step2/CSS/style.css">
  28. <style type="text/css">
  29. h1 {
  30. color:darkblue;
  31. }
  32. img {
  33. float: left;
  34. margin-right: 1em;
  35. }
  36. style>
  37. head>
  38. <body>
  39. <div>
  40. <h1 style="color:cornflowerblue">O Captain! My Captain!h1>
  41. <img src="https://www.educoder.net/attachments/download/170157" width="300" height="175" alt="Blue Flax (Linum lewisii)" />
  42. <p>O Captain! my Captain! our fearful trip is done,
  43. The ship has weather’d every rack, the prize we sought is won,
  44. The port is near, the bells I hear, the people all exulting,
  45. While follow eyes the <em>steady keelem>, the vessel grim and daring;p>
  46. <p><small style="font-size:10px;color:lightslategray;">© Walt Whitmansmall>p>
  47. div>
  48. body>
  49. html>

CSS从入门到精通——基础选择器

第1关: CSS 元素选择器

  1. html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>类选择器title>
  8. <style type="text/css">
  9. /* ********** BEGIN ********** */
  10. /* 元素选择器 */
  11. html {
  12. background-color: #F0F0F0;
  13. }
  14. header {
  15. padding: 40px;
  16. background-color: white;
  17. }
  18. footer {
  19. margin-top: 20px;
  20. font-size: 0.6em;
  21. color: grey;
  22. }
  23. /* ********** END ********** */
  24. style>
  25. head>
  26. <body>
  27. <div>
  28. <header>
  29. <li><a href="#chosen">精选a>li>
  30. <li><a href="#news">时事a>li>
  31. <li><a href="#finance">财政a>li>
  32. <li><a href="#think">思想a>li>
  33. <li><a href="#life">生活a>li>
  34. header>
  35. <div>
  36. <section>
  37. <h2>精选h2>
  38. <li>精选新闻1li>
  39. <li>精选新闻2li>
  40. <li>精选新闻3li>
  41. section>
  42. <section>
  43. <h2>时事h2>
  44. <li>时事新闻1li>
  45. <li>时事新闻2li>
  46. <li>时事新闻3li>
  47. section>
  48. <section>
  49. <h2>财政h2>
  50. <li>财政新闻1li>
  51. <li>财政新闻2li>
  52. <li>财政新闻3li>
  53. section>
  54. <section>
  55. <h2>思想h2>
  56. <li>思想新闻1li>
  57. <li>思想新闻2li>
  58. <li>思想新闻3li>
  59. section>
  60. <section>
  61. <h2>生活h2>
  62. <li>生活新闻1li>
  63. <li>生活新闻2li>
  64. <li>生活新闻3li>
  65. section>
  66. div>
  67. <footer>Copyright (c) News Copyright Holder All Rights Reserved.footer>
  68. div>
  69. body>
  70. html>

第2关: CSS 类选择器

  1. html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>类选择器title>
  8. <style type="text/css">
  9. /* 元素选择器 */
  10. html {
  11. background-color: #F0F0F0;
  12. }
  13. header {
  14. padding: 40px;
  15. background-color: white;
  16. }
  17. footer {
  18. margin-top: 20px;
  19. font-size: 0.6em;
  20. color: grey;
  21. }
  22. /* 类选择器 */
  23. .main {
  24. margin: 10px;
  25. }
  26. /* ********** BEGIN ********** */
  27. .newsSection{
  28. margin-top: 20px;
  29. padding: 20px;
  30. background-color: white;
  31. }
  32. /* ********** END ********** */
  33. style>
  34. head>
  35. <body>
  36. <div class="main">
  37. <header>
  38. <li><a href="#chosen">精选a>li>
  39. <li><a href="#news">时事a>li>
  40. <li><a href="#finance">财政a>li>
  41. <li><a href="#think">思想a>li>
  42. <li><a href="#life">生活a>li>
  43. header>
  44. <div class = "newsSection">
  45. <section>
  46. <h2>精选h2>
  47. <li>精选新闻1li>
  48. <li>精选新闻2li>
  49. <li>精选新闻3li>
  50. section>
  51. <section>
  52. <h2>时事h2>
  53. <li>时事新闻1li>
  54. <li>时事新闻2li>
  55. <li>时事新闻3li>
  56. section>
  57. <section>
  58. <h2>财政h2>
  59. <li>财政新闻1li>
  60. <li>财政新闻2li>
  61. <li>财政新闻3li>
  62. section>
  63. <section>
  64. <h2>思想h2>
  65. <li>思想新闻1li>
  66. <li>思想新闻2li>
  67. <li>思想新闻3li>
  68. section>
  69. <section>
  70. <h2>生活h2>
  71. <li>生活新闻1li>
  72. <li>生活新闻2li>
  73. <li>生活新闻3li>
  74. section>
  75. div>
  76. <footer>Copyright (c) News Copyright Holder All Rights Reserved.footer>
  77. div>
  78. body>
  79. html>

第3关: CSS id选择器

  1. html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>类选择器title>
  8. <style type="text/css">
  9. /* 元素选择器 */
  10. html {
  11. background-color: #F0F0F0;
  12. }
  13. header {
  14. padding: 40px;
  15. background-color: white;
  16. }
  17. footer {
  18. margin-top: 20px;
  19. font-size: 0.6em;
  20. color: grey;
  21. }
  22. /* 类选择器 */
  23. .main {
  24. margin: 10px;
  25. }
  26. .newsSection {
  27. margin-top: 20px;
  28. padding: 20px;
  29. background-color: white;
  30. }
  31. /* ********** BEIGN ********** */
  32. /*选择menu元素下的li子元素*/
  33. #menu li {
  34. float: left;
  35. width: 70px;
  36. font-size: 1.2em;
  37. font-weight: lighter;
  38. }
  39. #menu li, li a {
  40. list-style: none;
  41. text-decoration: none;
  42. }
  43. #chosen {
  44. color: red;
  45. }
  46. #news {
  47. color:blue;
  48. }
  49. #finance {
  50. color:olive;
  51. }
  52. #think {
  53. color:green;
  54. }
  55. #life {
  56. color:orange;
  57. }
  58. /* ********** END ********** */
  59. style>
  60. head>
  61. <body>
  62. <div class="main">
  63. <header id="menu">
  64. <li><a href="#chosen">精选a>li>
  65. <li><a href="#news">时事a>li>
  66. <li><a href="#finance">财政a>li>
  67. <li><a href="#think">思想a>li>
  68. <li><a href="#life">生活a>li>
  69. header>
  70. <div class="newsSection">
  71. <section>
  72. <h2 id="chosen">精选h2>
  73. <li>精选新闻1li>
  74. <li>精选新闻2li>
  75. <li>精选新闻3li>
  76. section>
  77. <section>
  78. <h2 id="news">时事h2>
  79. <li>时事新闻1li>
  80. <li>时事新闻2li>
  81. <li>时事新闻3li>
  82. section>
  83. <section>
  84. <h2 id="finance">财政h2>
  85. <li>财政新闻1li>
  86. <li>财政新闻2li>
  87. <li>财政新闻3li>
  88. section>
  89. <section>
  90. <h2 id="think">思想h2>
  91. <li>思想新闻1li>
  92. <li>思想新闻2li>
  93. <li>思想新闻3li>
  94. section>
  95. <section>
  96. <h2 id="life">生活h2>
  97. <li>生活新闻1li>
  98. <li>生活新闻2li>
  99. <li>生活新闻3li>
  100. section>
  101. div>
  102. <footer>Copyright (c) News Copyright Holder All Rights Reserved.footer>
  103. div>
  104. body>
  105. html>

CSS从入门到精通——文本与字体样式

第1关: 字体颜色、类型与大小

  1. body {
  2. /*背景渐变*/
  3. background: -webkit-linear-gradient(left, #7ECABA, #E2FCCB);
  4. /* Safari 5.1 - 6.0 */
  5. background: -o-linear-gradient(right, #7ECABA, #E2FCCB);
  6. /* Opera 11.1 - 12.0 */
  7. background: -moz-linear-gradient(right, #7ECABA, #E2FCCB);
  8. /* Firefox 3.6 - 15 */
  9. background: linear-gradient(to right, #7ECABA, #E2FCCB);
  10. /* 标准的语法 */
  11. font: 100% PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
  12. /*居中页面*/
  13. width: 45em;
  14. margin: 0 auto;
  15. }
  16. h1,
  17. h2 {
  18. /* ********** BEGIN ***********/
  19. font-family: PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
  20. /* ********** END ***********/
  21. }
  22. h1 {
  23. /* ********** BEGIN ***********/
  24. font-size: 2.1875em;
  25. /* 35px/16px */
  26. /* ********** END ************/
  27. }
  28. h2 {
  29. background-color: #eaebef;
  30. /* ********** BEGIN ***********/
  31. color: #7d717c;
  32. /* 使用em的方式设置h2元素为 28px 的字体大小 */
  33. font-size: 1.75em;
  34. /*28px/16px */
  35. /* ********** END ************/
  36. }
  37. h3 {
  38. background-color: white;
  39. /* ********** BEGIN ***********/
  40. font-size: 1.25em;
  41. color: green;
  42. /* ********** END ************/
  43. padding-left: 10px;
  44. }
  45. hr {
  46. height: 1px;
  47. border: none;
  48. border-top: 2px dashed #88b2d2;
  49. }
  50. footer {
  51. margin: 10px auto;
  52. }
  53. /* CONTENT
  54. ----------------------------------- */
  55. .architect {
  56. background-color: #fff;
  57. padding: 1.5em 1.75em;
  58. }
  59. /* :::: Intro ::::: */
  60. .intro {
  61. background-color: #888888;
  62. /* ********** BEGIN ***********/
  63. color: #fefefe;
  64. /* ********** END ************/
  65. padding: 1px 1.875em .7em;
  66. }
  67. .intro .subhead {
  68. /* ********** BEGIN ***********/
  69. font-size: 1.125em;
  70. /* ********** END ************/
  71. }
  72. .intro p {
  73. font-size: 1.0625em;
  74. }
  75. /* :::: chapter Descriptions ::::: */
  76. .chapter p {
  77. font-size: .9375em;
  78. }
  79. img {
  80. border-radius: 8px;
  81. }
  82. /* :::: Links :::: */
  83. a:link {
  84. color: #e10000;
  85. }
  86. a:visited {
  87. color: #b44f4f;
  88. }
  89. a:hover {
  90. color: #f00;
  91. }
  92. .intro a {
  93. color: #fdb09d;
  94. }
  95. .intro a:hover {
  96. color: #fec4b6;
  97. }

第2关: 字体粗细与风格

  1. body {
  2. /*背景渐变*/
  3. background: -webkit-linear-gradient(left, #7ECABA, #E2FCCB);
  4. /* Safari 5.1 - 6.0 */
  5. background: -o-linear-gradient(right, #7ECABA, #E2FCCB);
  6. /* Opera 11.1 - 12.0 */
  7. background: -moz-linear-gradient(right, #7ECABA, #E2FCCB);
  8. /* Firefox 3.6 - 15 */
  9. background: linear-gradient(to right, #7ECABA, #E2FCCB);
  10. /* 标准的语法 */
  11. font: 100% PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
  12. /*居中页面*/
  13. width: 45em;
  14. margin: 0 auto;
  15. }
  16. h1,
  17. h2 {
  18. /* 设置h1, h2 的font-family*/
  19. font-family: PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
  20. /* ********** BEGIN ***********/
  21. font-weight: normal;
  22. /* ********** END ***********/
  23. }
  24. h1 {
  25. /* 设置h1元素为 35px 的字体大小 */
  26. font-size: 2.1875em;
  27. /* 35px/16px */
  28. }
  29. h2 {
  30. background-color: #eaebef;
  31. /* 设置h2元素的字体颜色为:#7d717c */
  32. color: #7d717c;
  33. /* 使用em的方式设置h2元素为 28px 的字体大小 */
  34. font-size: 1.75em;
  35. /*28px/16px */
  36. }
  37. h3 {
  38. background-color: white;
  39. /* 使用em的方式设置h3元素为 20px 的字体大小 */
  40. font-size: 1.25em;
  41. /* 设置h3元素的字体颜色为:green */
  42. color: green;
  43. padding-left: 10px;
  44. }
  45. hr {
  46. height: 1px;
  47. border: none;
  48. border-top: 2px dashed #88b2d2;
  49. }
  50. /* 子选择器 */
  51. em,
  52. a:link,
  53. .intro .subhead {
  54. font-weight: bold;
  55. }
  56. footer {
  57. /* ********** BEGIN ***********/
  58. font-weight: light;
  59. font-style: italic;
  60. /* ********** END ***********/
  61. margin: 10px auto;
  62. }
  63. footer a {
  64. font-style: normal;
  65. }
  66. /* CONTENT
  67. ----------------------------------- */
  68. .architect {
  69. background-color: #fff;
  70. padding: 1.5em 1.75em;
  71. }
  72. /* :::: Intro ::::: */
  73. .intro {
  74. background-color: #888888;
  75. /* 设置 .intro 类元素的字体颜色为 #fefefe */
  76. color: #fefefe;
  77. padding: 1px 1.875em .7em;
  78. }
  79. .intro .subhead {
  80. /* 使用em的方式设置 `.intro .subhead ` (intro类下得subhead子类)为 18px 的字体大小。 */
  81. font-size: 1.125em;
  82. }
  83. .intro p {
  84. font-size: 1.0625em;
  85. }
  86. /* :::: chapter Descriptions ::::: */
  87. .chapter p {
  88. font-size: .9375em;
  89. }
  90. img {
  91. border-radius: 8px;
  92. }
  93. /* :::: Links :::: */
  94. a:link {
  95. /* 设置 a:link 元素的字体颜色为 #b44f4f */
  96. color: #e10000;
  97. }
  98. a:visited {
  99. color: #b44f4f;
  100. }
  101. a:hover {
  102. color: #f00;
  103. }
  104. .intro a {
  105. color: #fdb09d;
  106. }
  107. .intro a:hover {
  108. color: #fec4b6;
  109. }

第3关: 文本装饰与文本布局

  1. body {
  2. /*背景渐变*/
  3. background: -webkit-linear-gradient(left, #7ECABA, #E2FCCB);
  4. /* Safari 5.1 - 6.0 */
  5. background: -o-linear-gradient(right, #7ECABA, #E2FCCB);
  6. /* Opera 11.1 - 12.0 */
  7. background: -moz-linear-gradient(right, #7ECABA, #E2FCCB);
  8. /* Firefox 3.6 - 15 */
  9. background: linear-gradient(to right, #7ECABA, #E2FCCB);
  10. /* 标准的语法 */
  11. font: 100% PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
  12. /*居中页面*/
  13. width: 45em;
  14. margin: 0 auto;
  15. }
  16. h1,
  17. h2 {
  18. font-family: PingFang SC, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
  19. font-weight: normal;
  20. /*********** BEGIN ***********/
  21. text-align: center;
  22. /************ END ************/
  23. }
  24. h1 {
  25. /* 设置h1元素为 35px 的字体大小 */
  26. font-size: 2.1875em;
  27. /* 35px/16px */
  28. }
  29. h2 {
  30. background-color: #eaebef;
  31. /* 设置h2元素的字体颜色为:#7d717c */
  32. color: #7d717c;
  33. /* 使用em的方式设置h2元素为 28px 的字体大小 */
  34. font-size: 1.75em;
  35. /*28px/16px */
  36. }
  37. h3 {
  38. background-color: white;
  39. /* 使用em的方式设置h3元素为 20px 的字体大小 */
  40. font-size: 1.25em;
  41. /* 设置h3元素的字体颜色为:green */
  42. color: green;
  43. padding-left: 10px;
  44. /*********** BEGIN ***********/
  45. text-align: left;
  46. /************ END ************/
  47. }
  48. p {
  49. /*********** BEGIN ***********/
  50. text-align: justify;
  51. /************ END ************/
  52. }
  53. hr {
  54. height: 1px;
  55. border: none;
  56. border-top: 2px dashed #88b2d2;
  57. }
  58. /* 子选择器 */
  59. em,
  60. a:link,
  61. .intro .subhead {
  62. font-weight: bold;
  63. }
  64. footer {
  65. font-weight: light;
  66. font-style: italic;
  67. /* ********** BEGIN ***********/
  68. text-align: center;
  69. /* ********** END ***********/
  70. margin: 10px auto;
  71. }
  72. footer a {
  73. font-style: normal;
  74. }
  75. /* CONTENT
  76. ----------------------------------- */
  77. .architect {
  78. background-color: #fff;
  79. padding: 1.5em 1.75em;
  80. }
  81. /* :::: Intro ::::: */
  82. .intro {
  83. background-color: #888888;
  84. /* 设置 .intro 类元素的字体颜色为 #fefefe */
  85. color: #fefefe;
  86. padding: 1px 1.875em .7em;
  87. }
  88. .intro .subhead {
  89. /* 使用em的方式设置 `.intro .subhead ` (intro类下得subhead子类)为 18px 的字体大小。 */
  90. font-size: 1.125em;
  91. text-align: center;
  92. }
  93. .intro p {
  94. font-size: 1.0625em;
  95. }
  96. /* :::: chapter Descriptions ::::: */
  97. .chapter p {
  98. font-size: .9375em;
  99. }
  100. .photos {
  101. /*********** BEGIN ***********/
  102. text-align: center;
  103. /*********** END *************/
  104. }
  105. img {
  106. border-radius: 8px;
  107. }
  108. /* :::: Links :::: */
  109. /* 默认显示样式 */
  110. a:link {
  111. color: #e10000;
  112. /*********** BEGIN ***********/
  113. text-decoration: none;
  114. /*********** END *************/
  115. }
  116. a:visited {
  117. color: #b44f4f;
  118. }
  119. /* 鼠标放在上面的显示样式 */
  120. a:hover {
  121. color: #f00;
  122. /*********** BEGIN ***********/
  123. text-decoration: underline;
  124. /*********** END *************/
  125. }
  126. .intro a {
  127. color: #fdb09d;
  128. }
  129. .intro a:hover {
  130. color: #fec4b6;
  131. }

CSS从入门到精通——背景样式

第1关: 背景颜色

  1. /* ********** BEGIN ********** */
  2. body {
  3. background-color: ivory;
  4. }
  5. /* ********** END ********** */
  6. h1 {
  7. font-size: 40px;
  8. text-align: center;
  9. }
  10. p {
  11. font-size: 18px;
  12. color:grey;
  13. /* ********** BEGIN ********** */
  14. background-color: lightblue;
  15. /* ********** END ********** */
  16. }

第2关: 背景图片

  1. body {
  2. /* ********** BEGIN ********** */
  3. /*设置背景图片*/
  4. background-image: url("https://www.educoder.net/attachments/download/211106")
  5. /*设置背景图片模式*/
  6. /* ********** END ********** */
  7. }
  8. div {
  9. width: 90%;
  10. height: 100%;
  11. margin: auto;
  12. }

第3关: 背景定位与背景关联

  1. body {
  2. margin-right: 200px;
  3. /* ********** BEGIN ********** */
  4. /*设置背景图片*/
  5. background: url("https://www.educoder.net/attachments/download/211104") no-repeat fixed right top;
  6. /* ********** END ********** */
  7. }
  8. div {
  9. width: 90%;
  10. height: 100%;
  11. margin: auto;
  12. }

CSS入门到精通——表格样式

第1关: 表格边框

  1. table {
  2. /* ********** BEGIN ********** */
  3. border-collapse: collapse;
  4. border: 2px solid black;
  5. /* ********** END ********** */
  6. }
  7. th, td {
  8. padding: .5em .75em;
  9. }
  10. th {
  11. /* ********** BEGIN ********** */
  12. border: 1px solid grey;
  13. /* ********** END ********** */
  14. }
  15. td {
  16. /* ********** BEGIN ********** */
  17. border: 1px dotted grey ;
  18. /* ********** END ********** */
  19. }

第2关: 表格颜色、文字与大小

  1. table {
  2. border-collapse: collapse;
  3. border: 2px solid black;
  4. }
  5. caption {
  6. /* ********** BEGIN ********** */
  7. font-weight: bold;
  8. font-size: 20px;
  9. height: 40px;
  10. /* ********** END ********** */
  11. }
  12. th,
  13. td {
  14. /* ********** BEGIN ********** */
  15. width: 100px;
  16. height: 50px;
  17. text-align: center;
  18. /* ********** END ********** */
  19. }
  20. th {
  21. /* ********** BEGIN ********** */
  22. border: 1px solid white;
  23. background: lightseagreen;
  24. color: white;
  25. /* ********** END ********** */
  26. }
  27. td {
  28. border: 1px solid grey;
  29. }

标签:
声明

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

在线投稿:投稿 站长QQ:1888636

后台-插件-广告管理-内容页尾部广告(手机)
关注我们

扫一扫关注我们,了解最新精彩内容

搜索