HTML实现学习网站首页

news/2024/5/11 2:15:33/文章来源:https://blog.csdn.net/weixin_44659458/article/details/123030962

项目访问
在这里插入图片描述
reset.css

/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126License: none (public domain)
*/html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {display: block;
}
body {line-height: 1;
}
ol, ul {list-style: none;
}
blockquote, q {quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {content: '';content: none;
}
table {border-collapse: collapse;border-spacing: 0;
}

base.css

/* 该选择器 指代的就是html标签 */
:root {/* 设置项目默认的主题颜色 */--theme-blue: rgb(74, 195, 246);--theme-gray: rgb(167,167,167);/* 使用 " var() "该函数可以插入自定义的属性值 */
}

header.css

.clearfix::before,
.clearfix::after {content: "";display: block;clear: both;
}.clearfix {zoom: 1;
}a {color: #000;text-decoration: none;
}.edu_header {width: 1200px;margin: 0 auto;/* height: 600px; *//* border: 1px solid blue; */
}/* 媒体查询 */
@media screen and (max-width: 1200px) {.edu_header {width: 960px;}.search_right input{/* !important ==> 设置关键字,提高优先级 */width: 250px!important;} 
}.edu_header_bar {display: flex;justify-content: space-between;/* background-color: antiquewhite; */
}.edu_header_bar .logo {width: 148px;height: 50px;
}.edu_header_bar .logo img{height: 100%;
}.edu_header_bar .search {display: flex;/* 不写,默认主轴从左到右排列 *//* justify-content: space-between; */height: 50px;
}.search_left {display: flex;justify-content: space-around;align-items: center;margin-right: 20px;
}.search_left .location_icon {display: inline-block;width: 18px;height: 18px;margin-right:6px;background: url(../images/local.jpg) no-repeat center/cover;
}.search_left .city {color: var(--theme-gray);
}.search_right {display: flex;justify-content: space-between;position: relative;align-items: center;
}.search_right input {box-sizing: border-box;width: 414px;height: 40px;padding-left: 46px;border: 1px solid var(--theme-blue);border-top-left-radius: 20px;border-bottom-left-radius: 20px;outline: none;
}.search_right::before {position: absolute;left: 18px;top: 50%;margin-top: -10px;content:"";display: inline-block;width: 18px;height: 18px;background: url(../images/star-on-24.png) no-repeat center/cover;
}.search_right label {width: 85px;height: 40px;line-height: 40px;background-color: var(--theme-blue);text-align: center;border-top-right-radius: 20px;border-bottom-right-radius: 20px;font-size: 20px;color: #fff;
}.edu_header_bar .link{height: 50px;
}.edu_header_bar .link li{float: left;height: 50px;line-height: 50px;/* 给外面的li标签设置外边距值 */margin-left:30px;
}.edu_header_bar .link li a{display: inline-block;height: 100%;color: var(--theme-gray);
}.edu_header_bar .link li img {width: 40px;height: 40px;margin-top: 5px;border-radius: 50%;
}/* header_bar上部分  end  *//* header_nav start  */.header_nav {margin-top: 15px;
}.nav_list {display: flex;align-items: center;height: 50px;
}.nav_list  .nav_item {height: 100%;line-height: 50px;margin-right: 50px;font-size: 20px;
}/* 同一个标签设置多个类名,可以这样写 */
.nav_list  .nav_item.active {border-bottom: 3px solid var(--theme-blue);
}.nav_list  .nav_item.active a{/* 字体粗细程度  设置为粗体 */font-weight: bold;color: var(--theme-blue);
}/* 把最后一个li标签的外边距值设置为0 */
.nav_list  .nav_item:last-child {margin-right: 0;
}
/* header_nav end */

index.css

/* start edu_container */
.edu_container {position: relative;width: 100%;min-width: 1200px;
}.edu_banner {position: relative;width: 100%;min-width: 980px;
}
.course , .parent ,.video , .artice{position: relative;width: 100%;min-width: 1200px;
} 
.banner_pic {width: 100%;
}/* 设置媒体查询 当宽度大于1260px,更改左右按钮的left和right值 */
@media screen and (max-width: 1260px){.edu_banner .prev_btn {left: 100px!important;}.edu_banner .next_btn {right: 100px!important;}
}.prev_btn ,
.next_btn {position: absolute;top: 50%;/* 向上移动自身高度的一半 */margin-top: -25px;width: 50px;height: 50px;/* background-color: ; */border-radius: 50%;
}.prev_btn {left: 170px;background:rgba(74, 195, 246, .3) url(../images/left.png) no-repeat center;
}.next_btn {right: 180px;background: rgba(74, 195, 246, .3) url(../images/right.png) no-repeat center;
}.page_dot {position: absolute;bottom: 6px;left: 50%;/* 向左移动自身宽度的一半 */margin-left: -23px;width: 46px;/* height: 20px; *//* background-color: orange; */display: flex;justify-content: space-between;align-items: center;
}.page_dot .dot{/* 行内元素,设置宽高无效的 */display: inline-block;width: 8px;height: 8px;border-radius: 50%;background-color: var(--theme-gray);
}.page_dot .dot.active {width: 12px;height: 12px;background-color: var(--theme-blue);
}/* start 广州热门学校 */
.edu_wrapper {display: flex;justify-content: space-between;width: 1200px;margin: 0 auto;padding-top: 55px;
}/* 左侧是弹性宽度 */
.hot_school {flex: 1;
}/* 右侧固定宽度 */
.hot_rating {width: 23%;flex: 0 0 23%;margin-left: 2%;
}.school_lesson{position: relative;
}.title{display: inline-block;font-size: 32px;
}.small_title{display: inline-block;margin-left: 16px;font-size: 16px;color: var(--theme-gray);
}.more{position: absolute;top: 9px;right: 0;font-size: 14px;color: var(--theme-blue);
}.lesson_items {padding-top: 20px;
}.lesson_items>ul{display: flex;flex-wrap: wrap;justify-content: space-between;
} .lesson_items>ul>li{width: 32%;margin-bottom: 20px;border-radius: 15px;/* 盒子阴影 */box-shadow: 0px 1px 2px 1px #eee;
} .lesson_items>ul>li>img {height: 200px;width: 100%;
}.lesson_items .items_name,
.lesson_items .items_star,
.lesson_items .items_tips,
.lesson_items .items_address {margin-left: 15px;
}.lesson_items .items_name{margin-top: 20px;margin-bottom: 15px;font-size: 16px;font-weight: bold;
} .lesson_items .items_star{margin-bottom: 15px;
}.lesson_items .star {display: inline-block;width: 16px;height: 16px;background: url(../images/star-on-24.png) no-repeat center/cover;
}.lesson_items .score{color: #ecb50d;
}.lesson_items .items_tips {margin-bottom: 15px;
}.lesson_items .items_tips span{padding:2px 10px;background-color: var(--theme-blue);color: #fff;font-size: 12px;border-radius: 10px;
}
.lesson_items .items_address{margin-bottom: 15px;font-size: 12px;color: var(--theme-gray);
}   /* 右侧固定的评论 */
.hot_rating {margin-top: 50px;
}.hot_rating article {margin-top: 20px;
}.hot_rating  .rating_title {display: inline-block;width: 130px;font-size: 24px;font-weight: 500;/* 设置省略号效果 */overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
}.hot_rating  .rating_look {display: inline-block;font-size: 14px;color: var(--theme-blue);
}.hot_rating  .rating_plan {font-size: 15px;
}
.hot_rating  .rating_plan span{padding:0 2px;background: orangered;border-radius: 5px;color: #fff;
}.hot_rating  .rating_visited {padding: 15px 0;color: var(--theme-gray);font-size: 12px;}
/* end 广州热门学校 *//* start 热门兴趣课 */
.course{background-color: #f7f8fa;/* margin: 0 auto; */padding-top: 24px;box-sizing: border-box;
}
.course_container{width: 1200px;margin: 0 auto;position: relative;
}
.course_items{width: 1200px;margin: 18px 0 20px 0;display: flex;justify-content: space-between;
}
.course_items .item{width: 280px;padding-bottom: 40px;
}
.course_items .item img{width: 100%;
}
.course_items .item h6{font-size: 18px;color: #333333;font-weight: bold;margin: 10px 0 5px 0;
}
.course_items .item span{font-size: 12px;color: #bdbdbf;  
}
/* end 热门兴趣课 *//* start 家长种草推荐 */
.parent {padding-top: 24px;box-sizing: border-box;}.parent_container {width: 1200px;margin: 0 auto;position: relative;}.parent_items{width: 1200px;margin-top: 20px;}.parent_items .top_items , .parent_items .bottom_items {display: flex;justify-content: space-between;margin-bottom: 20px;}.parent_items .item{width: 274px; box-shadow: 0px 1px 2px 1px #eee;border-top-left-radius: 7px;border-top-right-radius: 7px;position: relative;}.parent_items .item img{width: 100%;height: 178px;}.parent_items .item img:last-of-type{height: 44px;width: 44px;border-radius: 50%;position: absolute;top: 151px;left: 26px;}.parent_items .item span:first-of-type{display: inline-block;width: 75px;height: 20px;background-color: #29b7f5;position: absolute;top: 166px;right:0px;border-top-left-radius: 6px;border-bottom-left-radius: 6px;color: #fff;font-size: 14px;line-height: 20px;box-sizing: border-box;padding-left: 10px;padding-right: 9px;}.parent_items .item span:last-of-type{position: absolute;top: 178px;left: 78px;font-size: 13px;color: #333;font-weight: bold;}.parent_items .item p{font-size: 13px;color: #dfdfdf;margin-top: 36px;margin-bottom: 20px;height: 36px;width: 199px;margin-left: auto;margin-right: auto;line-height: 18px;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}/* end  家长种草推荐*//* start 直播试听课 */.video {padding-top: 24px;box-sizing: border-box;background-color: #f7f8fa;position: relative;padding-bottom: 48px;
}
.video_container {width: 1200px;margin: 0 auto;position: relative;
}
.video_container .video_items{display: flex;justify-content: space-between;margin-top: 20px;
}
.video_container .video_items .item{width: 272px;position: relative;
}
.video_container .video_items .item img{height: 192px;width: 100%;
}
.video_container .video_items .item span{position: absolute;display: inline-block;width: 100%;height: 20px;line-height: 20px;font-size: 11px;background-color: rgba(0, 0, 0, 0.41);top: 171px;left: 0px;color: #fff;text-align: center;
}
.video_container .video_items .item .info{width: 100%;height: 117px;box-sizing: border-box;padding-top: 11px;text-align: center;background-color: #fff;}
.video_container .video_items .item .info h3{font-size: 14px;font-weight: bold;margin-bottom: 16px;
}
.video_container .video_items .item .info p{display: block;margin-bottom: 8px;font-size: 8px;color: #e2e2e2;
}
.video_container .video_items .item .info .teacher{padding-top: 10px;
}
.video_container .video_items .item .info .teacher img{width: 28px;height: 28px;vertical-align: middle;
}
.video_container .video_items .item .teacher p {display: inline-block;
}
.left , .right{display: inline-block;width: 40px;height: 40px;position: absolute;border-radius: 50%;background-size: 20px 20px;
}
.left{top: 202px;left: 100px;background: #dbdbdd url(../images/left.png) no-repeat center center;}
.right{top: 202px;right: 100px;background:#dbdbdd url(../images/right.png) no-repeat center center;
}/* end 直播试听课 *//* start 文章 */.artice{padding-top: 24px;box-sizing: border-box;position: relative;}.artice_container{width: 1200px;margin: 0 auto;position: relative;}.artice_container .artice_content{display: flex;justify-content: space-between;}.artice_container .artice_content .left_content , .artice_container .right_content{width: 588px;margin-bottom: 20px;margin-top: 20px;}.artice_container ul li{border-radius: 12px;width: 100%;height: 190px;margin-bottom: 10px;/* background-color: red; */box-sizing: border-box;padding: 20px 30px;box-shadow: 0px 1px 2px 1px #eee;}.artice_container ul li img{width: 196.5px;height: 146px;border-bottom-left-radius: 12px;border-bottom-right-radius:12px;vertical-align: top;margin-right: 20px;}.artice_container ul li .info {display: inline-block;width: 306px;height: 100%;position: relative;}.artice_container ul li .info p{font-size: 16px;color: #8e8e8e;width: 257px;line-height: 30px;}.artice_container ul li .info span{position: absolute;display: inline-block;width: 40px;height: 40px;background: url(../images/点赞.png) no-repeat center;background-size: 30px;top: 100px;left: -6px;}.artice_container ul li .info .number{position: absolute;top: 110px;left: 41px;color: #2063e8;}/* end 文章 */
/* end edu_container */

footer.css

/* start 底部 */
.edu_footer{background-color: #414141;height: 160px;box-sizing: border-box;padding-top: 28px;padding-bottom: 20px;}.footer_container{width: 810px;height: 100%;margin-left: auto;margin-right: auto;/* background-color: aqua; */}.footer_container .top{height: 31px;border-bottom: 1px solid #333;display: flex;justify-content: space-between;font-size: 17px;color: #fff;box-sizing: border-box;padding-bottom: 53px;}.footer_container .bottom {font-size: 8px;color: #fff;box-sizing: border-box;padding-top: 20px;}.footer_container .bottom span::after{content: "|";}.footer_container .bottom span:nth-child(4)::after{content: "";}.footer_container .bottom span:last-child::after{content: "";}.footer_container .bottom .bottom_top{margin-bottom: 5px;}.footer_container .top .top_left span{margin-right: 12px;}.footer_container .top .top_left{margin-top: 8px;}.footer_container .top .top_right span{display: inline-block;width: 112px;height: 30px;}.footer_container .top .top_right span p{display: inline-block;margin-left: 26px;margin-top: 7px;}.footer_container .top .top_right span:first-of-type{background: url(../images/weibo.png) no-repeat center left;background-size: 20px;}.footer_container .top .top_right span:last-of-type{background: url(../images/weixin.png) no-repeat center left;background-size: 20px;}/* end 底部 */

index.html

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>趣学网首页</title><link rel="stylesheet" href="./css/reset.css" /><link rel="stylesheet" href="./css/base.css" /><link rel="stylesheet" href="./css/header.css" /><link rel="stylesheet" href="./css/index.css" /><link rel="stylesheet" href="./css/footer.css">
</head><body><!-- start 头部 --><header class="edu_header"><!--  start 上部分  --><div class="edu_header_bar"><div class="logo"><img src="./images/logo.jpg" alt="logo" /></div><div class="search"><div class="search_left"><i class="location_icon"></i><span class="city">广州</span></div><div class="search_right"><input type="text" id="search" placeholder="搜索培训机构或者课程" /><label for="search">搜索</label></div></div><ul class="link clearfix"><li><a href="#"> 足迹 </a></li><li><a href="#">消息</a></li><li><a href="#">收藏</a></li><li><a href="#"><img src="./images/avatar.png" alt="用户头像" /></a></li></ul></div><!--  end 上部分  --><!--start 下部分  --><nav class="header_nav"><ul class="nav_list"><li class="nav_item active"><a href="#">首页</a></li><li class="nav_item"><a href="./school.html">找学校</a></li><li class="nav_item"><a href="#">问答社区</a></li><li class="nav_item"><a href="#">资讯文章</a></li><li class="nav_item"><a href="#">趣学专题</a></li></ul></nav><!--end 下部分  --></header><!-- end 头部 --><!-- start 主体内容 --><main class="edu_container"><!-- part01 start banner --><div class="edu_banner"><!-- 轮播图图片 --><div class="banner_pic"><img src="./images/banner.jpg" width="100%" alt="轮播图片" /></div><!-- 左右按钮 --><div class="prev_btn"></div><div class="next_btn"></div><!-- 小圆点 --><div class="page_dot"><span class="dot"></span><span class="dot active"></span><span class="dot"></span></div></div><!-- part01 end banner --><!-- part02 start 广州热门学校 --><div class="edu_wrapper"><section class="hot_school"><div class="school_lesson"><h2 class="title">广州热门学校</h2><h3 class="small_title">报课不迷路</h3><p class="more">更多热门学校 &gt;</p></div><div class="lesson_items"><ul><li><img src="./images/paning.png" alt="画画" /><h2 class="items_name">童程童美教育</h2><div class="items_star"><span class="star"></span><span class="star"></span><span class="star"></span><span class="star"></span><span class="star"></span><span class="score">5.0分</span></div><div class="items_tips"><span>少儿编程</span></div><div class="items_address">天河儿童公园/上社</div></li><li><img src="./images/Hiphop.png" alt="画画" /><h2 class="items_name">利泰丽姿.形体仪态礼仪</h2><div class="items_star"><span class="star"></span><span class="star"></span><span class="star"></span><span class="star"></span><span class="star"></span><span class="score">5.0分</span></div><div class="items_tips"><span>口才礼仪</span></div><div class="items_address">珠江新城</div></li><li><img src="./images/eloquence.png" alt="画画" /><h2 class="items_name">新世界日语</h2><div class="items_star"><span class="star"></span><span class="star"></span><span class="star"></span><span class="star"></span><span class="star"></span><span class="score">5.0分</span></div><div class="items_tips"><span>日语</span></div><div class="items_address">天河城/体育中心</div></li><li><img src="./images/paning.png" alt="画画" /><h2 class="items_name">艾佛瑞钢琴学校</h2><div class="items_star"><span class="star"></span><span class="star"></span><span class="star"></span><span class="star"></span><span class="star"></span><span class="score">5.0分</span></div><div class="items_tips"><span>钢琴辅导</span></div><div class="items_address">车陂/东圃</div></li><li><img src="./images/program_three.png" alt="画画" /><h2 class="items_name">美联少儿英语辅导</h2><div class="items_star"><span class="star"></span><span class="star"></span><span class="star"></span><span class="star"></span><span class="star"></span><span class="score">5.0分</span></div><div class="items_tips"><span>英语辅导</span></div><div class="items_address">凯德广场</div></li><li><img src="./images/art.png" alt="画画" /><h2 class="items_name">山谷私塾</h2><div class="items_star"><span class="star"></span><span class="star"></span><span class="star"></span><span class="star"></span><span class="star"></span><span class="score">5.0分</span></div><div class="items_tips"><span>书法</span></div><div class="items_address">上下九/北京路</div></li></ul></div></section><section class="hot_rating"><article><h2 class="rating_title">热门讨论寒假放假如何完成寒假作业</h2><p class="rating_look">(去社区看看)</p></article><article><h2 class="rating_plan">我的假期学习计划 <span></span></h2><p class="rating_visited">300万次浏览</p></article><article><h2 class="rating_plan">我的假期学习计划 <span></span></h2><p class="rating_visited">300万次浏览</p></article><article><h2 class="rating_plan">我的假期学习计划 <span></span></h2><p class="rating_visited">300万次浏览</p></article><article><h2 class="rating_plan">我的假期学习计划</h2><p class="rating_visited">300万次浏览</p></article><article><h2 class="rating_plan">我的假期学习计划</h2><p class="rating_visited">300万次浏览</p></article><article><h2 class="rating_plan">我的假期学习计划</h2><p class="rating_visited">300万次浏览</p></article><article><h2 class="rating_plan">我的假期学习计划</h2><p class="rating_visited">300万次浏览</p></article><article><h2 class="rating_plan">我的假期学习计划</h2><p class="rating_visited">300万次浏览</p></article></section></div><!-- part02 end 广州热门学校 --><!-- part03 start 热门兴趣课 --><div class="course"><section class="course_container"><div class="course_header"><h2 class="title">热门兴趣课</h2><h3 class="small_title">看看他们学什么</h3><p class="more">更多兴趣课 &gt;</p></div><div class="course_items"><div class="item"><img src="images/yukrili.png" alt=""><h6>尤克里里</h6><span>增强自信心,培养情操及涵养。</span></div><div class="item"><img src="images/ballet.png" alt=""><h6>尤克里里</h6><span>增强自信心,培养情操及涵养。</span></div><div class="item"><img src="images/the-game-of-go.png" alt=""><h6>尤克里里</h6><span>增强自信心,培养情操及涵养。</span></div><div class="item"><img src="images/drawing.png" alt=""><h6>尤克里里</h6><span>增强自信心,培养情操及涵养。</span></div></div></section></div><!-- part03 end 热门兴趣课 --><!-- part04 start 家长种草推荐 --><div class="parent"><section class="parent_container"><div class="parent_header"><h2 class="title">家长种草推荐</h2><p class="more">更多兴趣课 &gt;</p></div><div class="parent_items"><div class="top_items"><div class="item"><img src="images/dance.png" alt=""><img src="images/user1.png" alt=""><span>舞蹈培训</span><span>依晨</span><p>女儿从四岁多一直都在鹏星学习啦啦操培训,会努力坚持的!</p></div><div class="item"><img src="images/eloquence.png" alt=""><img src="images/user2.png" alt=""><span>口才训练</span><span>carm123</span><p>上几节课,孩子的胆怯和怯场慢慢有了改善,以前总会有“生人勿近”</p></div><div class="item"><img src="images/Hiphop.png" alt=""><img src="images/user3.png" alt=""><span>街舞培训</span><span>carm123</span><p>老师很专业,教的很仔细,学下来感觉氛围很好,舞蹈室很大,很漂亮。</p></div><div class="item"><img src="images/Magic.png" alt=""><img src="images/user4.png" alt=""><span>魔术教学</span><span>Done</span><p>魔术拉松很有耐心,孩子很内向,希望跟着老师学习后能活泼开朗。</p></div></div><div class="bottom_items"><div class="item"><img src="images/program_one.png" alt=""><img src="images/user5.png" alt=""><span>少儿编程</span><span>GP82</span><p>值得推荐,近在为孩子找到报读兴趣班,也在团上看了很多,最终挑选到这门课</p></div><div class="item"><img src="images/music_two.png" alt=""><img src="images/user6.png" alt=""><span>音乐培训</span><span>Jake</span><p>体验了一下何老师的吉他课,老师超nice,上课很轻松,环境也很棒</p></div><div class="item"><img src="images/art.png" alt=""><img src="images/user7.png" alt=""><span>美术绘画</span><span>tony</span><p>老师很专业,环境特别好,女儿学得非常认真。</p></div><div class="item"><img src="images/game.png" alt=""><img src="images/user8.png" alt=""><span>智力围棋</span><span>Dona</span><p>环境很好,老师也非常亲切,小宝很喜欢老师,只是离家远了!</p></div></div></div></div><!-- part04 end 家长种草推荐 --><!-- part05 start 直播试听课 --><div class="video"><span class="left"></span><section class="video_container"><div class="video_header"><h2 class="title">直播试听课</h2><p class="more">更多兴趣课 &gt;</p></div><div class="video_items"><div class="item"><img src="images/layer.png" alt=""><span>《自信口才》语言表达体验课</span><div class="info"><h3>胜狮少儿口才培训</h3><p>开播时间:2020年10月18日</p><div class="teacher"><img src="images/teacher.png" alt=""><p>讲师:小强老师</p></div></div></div><div class="item"><img src="images/FineArts.png" alt=""><span>少儿美术体验课</span><div class="info"><h3>大本象美术教育</h3><p>开播时间:2020年11月10日</p><div class="teacher"><img src="images/张修.png" alt=""><p>讲师:张修</p></div></div></div><div class="item"><img src="images/Drumkit.png" alt=""><span>【架子鼓】少儿零基础课</span><div class="info"><h3>心乐艺术中心</h3><p>开播时间:2020年10月30日</p><div class="teacher"><img src="images/teacher.png" alt=""><p>讲师:小王老师</p></div></div></div><div class="item"><img src="images/program_three.png" alt=""><span>少儿编程基础入门试听课</span><div class="info"><h3>乐博乐博STEAM少儿编程</h3><p>开播时间:2020年12月15日</p><div class="teacher"><img src="images/teacher.png" alt=""><p>讲师:小张老师</p></div></div></div></div></section><span class="right"></span></div><!-- part05 end 直播试听课 --><!-- part06 start 文章 --><div class="artice"><section class="artice_container"><div class="artice_header"><h2 class="title">文章</h2><p class="more">更多文章 &gt;</p></div><div class="artice_content"><div class="left_content"><ul><li><img src="images/Hiphop.png" alt=""><div class="info"><p>有关孩子“兴趣班”,看这一篇,就够了!</p><span class=""></span><p class="number">10000</p></div></li><li><img src="images/Hiphop.png" alt=""><div class="info"><p>有关孩子“兴趣班”,看这一篇,就够了!</p><span class=""></span><p class="number">10000</p></div></li><li><img src="images/Hiphop.png" alt=""><div class="info"><p>有关孩子“兴趣班”,看这一篇,就够了!</p><span class=""></span><p class="number">10000</p></div></li></ul></div><div class="right_content"><ul><li><img src="images/Hiphop.png" alt=""><div class="info"><p>有关孩子“兴趣班”,看这一篇,就够了!</p><span class=""></span><p class="number">10000</p></div></li><li><img src="images/Hiphop.png" alt=""><div class="info"><p>有关孩子“兴趣班”,看这一篇,就够了!</p><span class=""></span><p class="number">10000</p></div></li><li><img src="images/Hiphop.png" alt=""><div class="info"><p>有关孩子“兴趣班”,看这一篇,就够了!</p><span class=""></span><p class="number">10000</p></div></li></ul></div></div></section></div><!-- part06 end 文章 --></main><!-- end 主体内容 --><!-- start 尾部 --><footer class="edu_footer"><div class="footer_container"><div class="top"><div class="top_left"><span>联系我们</span><span>法律声明</span><span>隐私政策</span><span>用户协议</span><span>加入我们</span></div><div class="top_right"><span><p>官方微博</p></span><span><p>微信公众号</p></span></div></div><div class="bottom"><div class="bottom_top"><span>客服热线:400 8536 100 周一至周日 9:00-21:00</span><span>在线客服:趣学网 - 我 -在线客服</span><span>违法和不良信息举报电话:400 8536 100 转7</span><span>教App备11517号</span></div><div class="bottom_bottom"><span>粤ICP备15039397号</span><span>粤公网安备 11010502035430号</span><span>粤B2-070890</span><span>广东趣学教育有限公司</span><span>广州市天河区广四路大街</span><span>营业执照</span><span>出版物证</span></div></div></div></footer><!-- end 尾部 -->
</body></html>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.luyixian.cn/news_show_714617.aspx

如若内容造成侵权/违法违规/事实不符,请联系dt猫网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

一次网站登录慢故障排查

昨天上午到公司&#xff0c;研发发邮件通知说有用户反映登录我们A站速度很慢&#xff0c;登录进去之后的操作都是正常的&#xff0c;所以基本可以排除网络与服务器压力大的因素。 那么接下来就是看看数据库与缓存是否成为瓶颈&#xff0c;结果没有什么发现&#xff0c;毕竟A站是…

电商网站前台模板_电商热潮汹涌,兴长信达PEC零售商城系统为企业注入新力量...

随着5G时代的来临&#xff0c;伴随着移动互联网行业的高速发展&#xff0c;电子商务作为较为先进的商业模式在我国正在成为主流。放眼全球&#xff0c;电子商务模式同样发展迅速&#xff0c;全球电商销售额一直在不断蚕食全球零售市场&#xff0c;到2021年&#xff0c;预计全球…

Hosts文件与钓鱼网站

有些病毒或木马&#xff0c;修改你计算机上hosts文件&#xff0c;你访问某些网站就有可能访问到钓鱼网站&#xff0c;或者你的计算机不能打开某个网址&#xff0c;或者你能够打开网页&#xff0c;但是你的计算机不能升级病毒库&#xff0c;这时候你就应该检查一下你的计算机hos…

MySQL查询用户行为,网站用户行为分析

网站用户行为分析步骤1.1 本地数据集上传到数据仓库Hive数据集下载与查看数据集预处理把数据集导入HDFS中在Hive上创建数据库1.2 Hive数据分析给出数据分析需求用select语句实现数据分析数据分析结果查看与保存1.3 Hive、MySQL、HBase数据互导Hive数据分析结果(如用户购买与浏览…

linux子系统gdp调试,GDB调试命令_Linux编程_Linux公社-Linux系统门户网站

1、查看源码&#xff1a;list [函数名][行数]2、暂停程序(1)设置断点&#xff1a;a、break [源代码行号][源代码函数名][内存地址]b、break ... if condition ...可以是上述任一参数&#xff0c;condition是条件。例如在循环体中可以设置break ... if i 100 来设置循环次数(…

c底层用什么网站编写服务器,c编写服务器

c编写服务器 内容精选换一换简要介绍clang是一个C编写、基于LLVM、发布于LLVM BSD许可证下的C/C/Objective-C/Objective-C编译器。语言&#xff1a;C一句话描述&#xff1a;C/C/Objective-C/Objective-C编译器开源协议&#xff1a;Apache License Version 2.0建议的版本建议使用…

程序员经常访问的技术网站

作为一个工作几年的程序员&#xff0c;分类总结一下经常会访问的技术网站。 一.项目源码 (1).Github 代码托管 GitHub的使用可是程序员在职业生涯中技能必不可少的技能。它可以做Git代码托管平台&#xff0c;很多开源项目都放在Github上&#xff0c;因此我们就可以借鉴别人的…

好看的网站主页截图

好看的网站主页截图 总结 1、大图大气 2、网站界面好&#xff0c;用好图 截图 这个网站的美工挺不错的&#xff0c;但是这样东西并不难做啊 大图&#xff0c;大气

挖一挖那些让公司网站瘫痪的SQL“终结者”

IT实战联盟博客&#xff1a;http://blog.100boot.cn 一条慢查询会造成什么后果&#xff1f;之前我一直觉得不就是返回数据会慢一些么&#xff0c;用户体验变差&#xff1f; 其实远远不止&#xff0c;我经历过几次线上事故&#xff0c;有一次就是由一条 SQL 慢查询导致的。 那…

大型网站架构系列:缓存在分布式系统中的应用(三)

https://mp.weixin.qq.com/s/TrPlYj-3ymiLCIK8dQEiEw 上次主要给大家分享了&#xff0c;缓存在分布式系统中的应用&#xff0c;主要从不同的场景&#xff0c;介绍了CDN&#xff0c;反向代理&#xff0c;分布式缓存&#xff0c;本地缓存的常规架构和基本原理。 因为时间关于&a…

大型网站应用之海量数据和高并发解决方案总结一二!

https://mp.weixin.qq.com/s?__bizMzUxOTAxODc2Mg&mid2247483781&idx3&sn19959b3978281e9bcadd7d19d8ecc178&chksmf98141e0cef6c8f6d6d53da7886906308660b6aa820f5d1fc2b55721db23ce9bfa73fe128a44&scene21#wechat_redirect 作者&#xff1a;徐刘根 | …

千万级用户的大型网站,应该如何设计其高并发架构?(彩蛋)

转发自今日头条 目录 &#xff08;1&#xff09;单块架构 &#xff08;2&#xff09;初步的高可用架构 &#xff08;3&#xff09;千万级用户量的压力预估 &#xff08;4&#xff09;服务器压力预估 &#xff08;5&#xff09;业务垂直拆分 &#xff08;6&#xff09;用…

一个开源vue网站博客,nuxt开源网站,前后端分离项目

unNue.com 开媛笔记&#xff0c;基于nuxt ssr首屏服务器端渲染 。用于分享、记录、交流和学习&#xff0c;希望可以帮助到小伙伴们。同时网站在不断更新&#xff0c;创造属于猿&#xff08;媛&#xff09;的世界 -$Bao Yalong ..Lets Go! https://unnue.com 简述 前端 Github地…

怎样将优酷网站下载的视频KUX转MP4格式

在休息之余&#xff0c;相信大多数人都会拿手机看电视剧听音乐之类的&#xff0c;最近拍了很多的新片子&#xff1a;《毒液&#xff1a;致命守护者》、《无名之辈》、《亡命救赎》《影》等等优质电影&#xff0c;但是很多的电影都只能在电影院观看的&#xff0c;如果不去电影院…

网站关键词编写方法,注意事项。

1.Title标签&#xff1a; 即网站标题&#xff08;沙发超人&#xff09;&#xff0c;指的是目标关键词或者主关键词在源代码中的表现形式。 代码格式1&#xff1a;<title>关键词1_关键词2_关键词3 – 网站的品牌</title> &#xff08;常用格式&#xff09; 代码格式…

分享一些省心的PPT模板下载网站资源(附5G优质PPT模板)

每次需要做PPT时&#xff0c;总是为找省心的模板二发愁&#xff0c;用搜索引擎搜索“免费PPT模板”时&#xff0c;展示出的大量所谓“免费”的网站。心动的点开一个后&#xff0c;最终却是&#xff1a;开通会员才免费&#xff0c;满满的套路 现在我们急需那些&#xff0c;省去搜…

network 关于PV,网站访问量和服务器带宽的选择

网站用户访问流量图 对于PV&#xff0c;流量和带宽的理解&#xff0c;可以分成几个问题可能更加容易理解 问题1&#xff1a;首先什么是PV 技术角度讲,1个PV是指从浏览器发出一个对网络服务器的Request 网络服务器接到Request之后会开始把该Request对应的一个Page &#xff08…

[IIS网站问题]设置防火墙协议及端口等问题

如果AppWeb网站通过域名公开访问,请选择 域 ;如果AppWeb网站只通过类似 http://192.168.3.107:6789 局域网访问,选择 专用 即可。如果实在搞不懂这个规则,就全选即可。见下图: 另外,名称可以自由定义.

小型的搜索引擎设计_广州网站设计工作室-赛致信息科技

很多人都在为自己企业的网站而发愁&#xff0c;担心的就是自己企业的网站做不好&#xff0c;在开始做网站的时候就很犹豫&#xff0c;不知道究竟该选择哪家网站建设好点&#xff0c;造成这一现状的根本原因就是现在网站建设的行业鱼龙混杂&#xff0c;让很多企业迷茫不知所措&a…

iis10 asp 如何连接mdb_网站500内部服务器错误如何解决 - 最蜘蛛池

原出处&#xff1a;最蜘蛛池原文链接&#xff1a;网站500内部服务器错误如何解决&#xff1f; - 最蜘蛛池在SEO工作过程中&#xff0c;我们偶尔会遇到http500内部服务器错误&#xff0c;这样的问题&#xff0c;它是一个明显的http状态码&#xff0c;它告诉站长&#xff0c;你的…