商意经

 找回密码
 立即注册
查看: 78|回复: 1

大一作业HTML网页作业:简单的旅游 1页 (旅游主题)

[复制链接]

1544

主题

3862

帖子

6960

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
6960
发表于 2022-12-8 08:06:38 | 显示全部楼层 |阅读模式
>   ⛵ 源码获取 文末联系
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="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <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="bigbox">
        <h2>旅行目的地</h2>
        <h4>TRAVEL DESTINATION</h4>
        <h5>————当季热门————</h5>
        <div class="heard">
            <ul>
                <li>美洲</li>
                <li>欧洲</li>
                <li>亚洲</li>
                <li>海岛</li>
                <li>美洲</li>
            </ul>
        </div>
        <div style="height: 50px;">
        </div>
        <div class="img1">
            <img src="picture/con1_img1.jpg" alt="">
            <img src="picture/con1_img2.jpg" alt="">
            <img src="picture/con1_img3.jpg" alt="">

        </div>
        <div class="img1">
            <img src="picture/con1_img4.jpg" alt="">
            <img src="picture/con1_img5.jpg" alt="">
            <img src="picture/con1_img6.jpg" alt="">
        </div>
        <h2>旅游资讯</h2>
        <h4>NEWS CENTER</h4>
        <h5>————当季热门————</h5>
        <div style="height: 50px;">

        </div>
        <div class="dier">
            <img src="picture/con2_img1.jpg" alt="">
            <div class="left">
                <ul>
                    <li style="background-color: #364352;">
                        <p class="one" style="color: #EBECED;">
                            01
                        </p>
                        <div class="two">
                            <p style="color: #EBECED;">
                                旅游嘉年华,走进华夏,叫醒耳朵
                            </p>
                            <p>
                                因为因为临夏离兰州很近,地理位置优越,是兰州1小时经济圈重要的...
                            </p>
                        </div>
                        <div class="three">
                            <p style="color: #EBECED;">19</p>
                            <p style="color: #EBECED;">2017-5</p>
                        </div>
                    </li>
                    <li>
                        <p class="one">
                            02
                        </p>
                        <div class="two">
                            <p>
                                全景观世界之达沃潜水旅游之行
                            </p>
                            <p>
                                因为因为临夏离兰州很近,地理位置优越,是兰州1小时经济圈重要的...
                            </p>
                        </div>
                        <div class="three">
                            <p>05</p>
                            <p>2017-5</p>
                        </div>
                    </li>
                    <li style="background-color: #DBE4EF;">
                        <p class="one">
                            03
                        </p>
                        <div class="two">
                            <p>
                                玩转美国十大历史小镇 小城也有精彩大故事
                            </p>
                            <p>
                                因为因为临夏离兰州很近,地理位置优越,是兰州1小时经济圈重要的...
                            </p>
                        </div>
                        <div class="three">
                            <p>01</p>
                            <p>2017-5</p>
                        </div>
                    </li>
                </ul>
            </div>
        </div>
    </div>

</body>

</html><hr/>学的反而越迷茫

有这种感觉很正常,因为你还没有真正去公司里面待过,也不清楚自己到底要学多少东西才能胜任公司里面给你分配的活。我从你的表述来看,你的基础应该还是很扎实的。跟着网上那种全套的视频教程学肯定没有问题。
当你以后真正进入公司,发现工作的难度和量大约只有你学习时期的大约20%,你可能就会发出一声叹息:原来工作也不过如此嘛。
这是很正常的,因为大部分公司是招你进去去干活的,写业务的,不是让你一个新人去研发公司架构的。都是现成的东西,你要做的就是在别人的教导下,手把手的指挥下去添砖加瓦。到时候你恐怕要惊呼:就这?
所以,放松心态吧,好好享受大学时光 —————————————————
<hr/>学习更多

关注我 | 点赞博文 | 每天带你涨知识  
<hr/>
回复

使用道具 举报

0

主题

6

帖子

10

积分

新手上路

Rank: 1

积分
10
发表于 昨天 19:23 | 显示全部楼层
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|商意经

GMT+8, 2025-4-5 19:21 , Processed in 0.232271 second(s), 24 queries .

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.. 技术支持 by 巅峰设计

快速回复 返回顶部 返回列表