| 
 | 
 
>   ⛵ 源码获取 文末联系 ✈ 
Web前端开发技术 描述  网页设计题材,DIV+CSS 布局制作,HTML+CSS网页设计期末课程大作业 | 游景点介绍 | 旅游风景区 | 家乡介绍 | 等网站的设计与制作 | HTML期末大学生网页设计作业,Web大学生网页  
-  HTML:结构
 
 -  CSS:样式 在操作方面上运用了html5和css3, 采用了div+css结构、表单、超链接、浮动、绝对定位、相对定位、字体样式、引用视频等基础知识
 
 -  JavaScript:做与用户的交互行为
 
  @TOC  
<hr/>前端学习路线 
 
(1)html文件:其中index.html是首页、其他html为二级页面; (2)css文件:css全部页面样式,文字滚动, 图片放大等; (3)js文件:js实现动态轮播特效, 表单提交, 点击事件等等(网页中运用到js代码) 
网页基本结构 
 
(1)首页:进入网页中看到的第一个页面(LOGO、公司名称、导航、banner、新闻、相关信息、底部信息、banner一般是5个   (2)二级页面:从首页点击进入之后的页面叫做二级页面 (3)三级页面:从二级页面点击进入的页面 
网页html:网页是构成网站的基本元素,是承载各种网站应用的平台。通俗地说,网站就是由网页组成的 首页网站:首页是一个网站的入口网页,故往往会被编辑得易于了解该网站多数作为首页的文件名是index加上扩展名 导航菜单:是指位于页面顶部或者侧边区域的,也称之为导航栏,它起着链接站点或者软件内的各个页面的作用. 网页页脚:是网页中每个页面的底部的区域。常用于显示附加信息。如作者、备案号等。 
<hr/>网页演示 
 
 
 
  
 
在这里插入图片描述 
 
HTML结构代码 
 
<!DOCTYPE html> 
<html lang=&#34;en&#34;> 
 
<head> 
    <meta charset=&#34;UTF-8&#34;> 
    <meta http-equiv=&#34;X-UA-Compatible&#34; content=&#34;IE=edge&#34;> 
    <meta name=&#34;viewport&#34; content=&#34;width=device-width, initial-scale=1.0&#34;> 
    <title>考试</title> 
</head> 
<style> 
    * { 
        margin: 0px; 
        padding: 0px; 
        list-style: none; 
    } 
 
    .bigbox { 
        width: 1200px; 
        margin: 0 auto; 
        margin-bottom: 100px; 
    } 
 
    h2 { 
        text-align: center; 
        margin-top: 50px; 
        font-weight: 300; 
    } 
 
    h4 { 
        text-align: center; 
        color: #787F87; 
        font-weight: 500; 
        font-size: 14PX; 
    } 
 
    h5 { 
        margin-top: 10px; 
        color: #929090; 
        text-align: center; 
    } 
 
    .heard { 
        margin-top: 40px; 
        height: 30px; 
        width: 100%; 
    } 
 
    .heard ul { 
        display: flex; 
        width: 500px; 
        margin: 0 auto; 
    } 
 
    .heard ul li { 
        border: 1px solid #7194BF; 
        color: #7194BF; 
        width: 80px; 
        margin-left: 10px; 
        margin-right: 10px; 
        text-align: center; 
        height: 24px; 
        margin-top: 3px; 
        line-height: 24px; 
    } 
 
    .heard ul li:first-child { 
        color: #fff; 
        background-color: #7194BF; 
    } 
 
    .img1 { 
        position: relative; 
        display: flex; 
    } 
 
    .img1 img { 
        width: 400px; 
    } 
 
    .dier { 
        display: flex; 
    } 
 
    .dier img { 
        width: 570px; 
        margin-right: 30px; 
    } 
 
    .left { 
        width: 600px; 
        height: 322px; 
        background-color: #fff; 
    } 
 
    .left ul li { 
        display: flex; 
        width: 100%; 
        height: 90px; 
    } 
 
    .left ul li:not(:first-child) { 
        margin-top: 26px; 
        background-color: #E0E9F0; 
    } 
 
    .left ul li {} 
 
    .one { 
        display: inline-block; 
        height: 100%; 
        width: 60px; 
        font-size: 25px; 
        text-align: center; 
        line-height: 90px; 
        font-weight: 900; 
        color: #80858B; 
    } 
 
    .two { 
        width: 450px; 
    } 
 
    .two P:first-child { 
        font-size: 16px; 
        font-weight: 500; 
        margin-top: 23px; 
        color: #000000; 
    } 
 
    .two P:last-child { 
        font-size: 14px; 
        color: #A7AEB2; 
    } 
 
    .three { 
        width: 90px; 
        text-align: center; 
    } 
 
    .three p:first-child { 
        margin-top: 23px; 
        font-size: 16px; 
        font-weight: 500; 
        color: #80858B; 
    } 
 
    .three p:last-child { 
        font-size: 14px; 
        color: #80858B; 
    } 
</style> 
 
<body> 
    <div class=&#34;bigbox&#34;> 
        <h2>旅行目的地</h2> 
        <h4>TRAVEL DESTINATION</h4> 
        <h5>————当季热门————</h5> 
        <div class=&#34;heard&#34;> 
            <ul> 
                <li>美洲</li> 
                <li>欧洲</li> 
                <li>亚洲</li> 
                <li>海岛</li> 
                <li>美洲</li> 
            </ul> 
        </div> 
        <div style=&#34;height: 50px;&#34;> 
        </div> 
        <div class=&#34;img1&#34;> 
            <img src=&#34;picture/con1_img1.jpg&#34; alt=&#34;&#34;> 
            <img src=&#34;picture/con1_img2.jpg&#34; alt=&#34;&#34;> 
            <img src=&#34;picture/con1_img3.jpg&#34; alt=&#34;&#34;> 
 
        </div> 
        <div class=&#34;img1&#34;> 
            <img src=&#34;picture/con1_img4.jpg&#34; alt=&#34;&#34;> 
            <img src=&#34;picture/con1_img5.jpg&#34; alt=&#34;&#34;> 
            <img src=&#34;picture/con1_img6.jpg&#34; alt=&#34;&#34;> 
        </div> 
        <h2>旅游资讯</h2> 
        <h4>NEWS CENTER</h4> 
        <h5>————当季热门————</h5> 
        <div style=&#34;height: 50px;&#34;> 
 
        </div> 
        <div class=&#34;dier&#34;> 
            <img src=&#34;picture/con2_img1.jpg&#34; alt=&#34;&#34;> 
            <div class=&#34;left&#34;> 
                <ul> 
                    <li style=&#34;background-color: #364352;&#34;> 
                        <p class=&#34;one&#34; style=&#34;color: #EBECED;&#34;> 
                            01 
                        </p> 
                        <div class=&#34;two&#34;> 
                            <p style=&#34;color: #EBECED;&#34;> 
                                旅游嘉年华,走进华夏,叫醒耳朵 
                            </p> 
                            <p> 
                                因为因为临夏离兰州很近,地理位置优越,是兰州1小时经济圈重要的... 
                            </p> 
                        </div> 
                        <div class=&#34;three&#34;> 
                            <p style=&#34;color: #EBECED;&#34;>19</p> 
                            <p style=&#34;color: #EBECED;&#34;>2017-5</p> 
                        </div> 
                    </li> 
                    <li> 
                        <p class=&#34;one&#34;> 
                            02 
                        </p> 
                        <div class=&#34;two&#34;> 
                            <p> 
                                全景观世界之达沃潜水旅游之行 
                            </p> 
                            <p> 
                                因为因为临夏离兰州很近,地理位置优越,是兰州1小时经济圈重要的... 
                            </p> 
                        </div> 
                        <div class=&#34;three&#34;> 
                            <p>05</p> 
                            <p>2017-5</p> 
                        </div> 
                    </li> 
                    <li style=&#34;background-color: #DBE4EF;&#34;> 
                        <p class=&#34;one&#34;> 
                            03 
                        </p> 
                        <div class=&#34;two&#34;> 
                            <p> 
                                玩转美国十大历史小镇 小城也有精彩大故事 
                            </p> 
                            <p> 
                                因为因为临夏离兰州很近,地理位置优越,是兰州1小时经济圈重要的... 
                            </p> 
                        </div> 
                        <div class=&#34;three&#34;> 
                            <p>01</p> 
                            <p>2017-5</p> 
                        </div> 
                    </li> 
                </ul> 
            </div> 
        </div> 
    </div> 
 
</body> 
 
</html><hr/>学的反而越迷茫 
 
有这种感觉很正常,因为你还没有真正去公司里面待过,也不清楚自己到底要学多少东西才能胜任公司里面给你分配的活。我从你的表述来看,你的基础应该还是很扎实的。跟着网上那种全套的视频教程学肯定没有问题。 
当你以后真正进入公司,发现工作的难度和量大约只有你学习时期的大约20%,你可能就会发出一声叹息:原来工作也不过如此嘛。 
这是很正常的,因为大部分公司是招你进去去干活的,写业务的,不是让你一个新人去研发公司架构的。都是现成的东西,你要做的就是在别人的教导下,手把手的指挥下去添砖加瓦。到时候你恐怕要惊呼:就这? 
所以,放松心态吧,好好享受大学时光 ————————————————— 
<hr/>学习更多 
 
关注我 | 点赞博文 | 每天带你涨知识   
<hr/> |   
 
 
 
 |