大学生个人网页模板 简单网页制作作业成品 极简风格个人介绍HTML网页设计(舞蹈培训网页)

这篇博客分享了一位大学生使用HTML、CSS和JavaScript制作的极简风格个人介绍网页,包括网页基本结构、前端学习路线和网页演示。内容涵盖HTML结构、CSS样式和JavaScript交互,适合初学者参考。
摘要由CSDN通过智能技术生成

源码获取 文末联系

Web前端开发技术
描述 网页设计题材,DIV+CSS 布局制作,HTML+CSS网页设计期末课程大作业 | 校园篮球网页设计 | 足球体育运动 | 体育游泳运动 | 兵乓球 | 网球 | 等网站的设计与制作 | HTML期末大学生网页设计作业,Web大学生网页

  1. HTML:结构

  2. CSS:样式
    在操作方面上运用了html5和css3,
    采用了div+css结构、表单、超链接、浮动、绝对定位、相对定位、字体样式、引用视频等基础知识

  3. JavaScript:做与用户的交互行为


前端学习路线

(1)html文件:其中index.html是首页、其他html为二级页面;
(2)css文件:css全部页面样式,文字滚动, 图片放大等;
(3)js文件:js实现动态轮播特效, 表单提交, 点击事件等等(网页中运用到js代码)

网页基本结构

(1)首页:进入网页中看到的第一个页面(LOGO、公司名称、导航、banner、新闻、相关信息、底部信息、banner一般是5个  
(2)二级页面:从首页点击进入之后的页面叫做二级页面
(3)三级页面:从二级页面点击进入的页面

网页html:网页是构成网站的基本元素,是承载各种网站应用的平台。通俗地说,网站就是由网页组成的
首页网站:首页是一个网站的入口网页,故往往会被编辑得易于了解该网站多数作为首页的文件名是index加上扩展名
导航菜单:是指位于页面顶部或者侧边区域的,也称之为导航栏,它起着链接站点或者软件内的各个页面的作用.
网页页脚:是网页中每个页面的底部的区域。常用于显示附加信息。如作者、备案号等。


网页演示

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

HTML结构代码



<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black">
    <meta name="format-detection" content="telephone=no">
    <meta name="format-detection" content="email=no">
    <title>首页-某某舞蹈培训</title>
    <link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
    <link rel="stylesheet" type="text/css" href="css/slick-theme.css">
    <link rel="stylesheet" type="text/css" href="css/slick.css">
    <link rel="stylesheet" href="css/g.css">
    <link rel="stylesheet" href="css/s.css">
    <script src="js/jquery-1.11.1.min.js"></script>
    <script src="js/jquery-ui.min.js"></script>
    <script src="js/slick.js"></script>
    <script src="js/scrolloverflow.min.notransition.js"></script>
    <script src="js/g.js"></script>
    <style>

        .banners-pc {
      clear: both; height: 685px; }
        .banners-pc .frame {
      height: 685px; background: no-repeat center center; background-size: cover; }

        .banners-mb {
      display: none; clear: both; height: 685px; }
        .banners-mb div {
      height: 100%; }
        .banners-mb .frame {
      height: 100%; background: no-repeat center center; background-size: cover; }

        @media (max-width: 1024px) {
     
            .banners-pc {
      display: none; }
            .banners-mb {
      display: block; }
        }


        .main1 {
      }
        .main1 .offset {
      padding-top: 70px; }
        .main1 .offset .list {
      overflow: hidden; margin-left: -100px; margin-bottom: -30px; }
        .main1 .offset .list > li {
      float: left; width: 25%; padding-left: 100px; padding-bottom: 30px; }
        .main1 .offset .list > li:nth-child(4n+1) {
      clear: both; }
        .main1 .offset .list > li .pic {
      text-align: center; margin-top: 5px; height: 224px; width: 224px; }
        .main1 .offset .list > li .pic img {
      border-radius: 50%; display: inline-block; text-align: center; margin-top: 13px; }
        .main1 .offset .list > li .font {
      text-align: center; }
        .main1 .offset .list > li .font .p1 {
      font-size: 18px; color: #333; padding-top: 30px; }
        .main1 .offset .list > li .font .p1 .line {
      display: block; width: 32px; height: 2px; background: #a93f52; margin: 15px auto 20px auto; }
        .main1 .offset .list > li .font .p2 {
      color: #999; line-height: 24px; }
        .main1 .offset .list > li .font .btn {
      text-align: center; margin-top: 30px; }
        .main1 .offset .list > li .font .btn .more {
      display: inline-block; padding: 10px 40px; border-radius: 50px; color: #fff; }
        .main1 .offset .list .li1 .pic {
      background: url(http://www.ylcp.shop/files/files/1649473054859/img/kc_list_bg1.png) no-repeat center center; background-size: contain; }
        .main1 .offset .list .li2 .pic {
      background: url(http://www.ylcp.shop/files/files/1649473054859/img/kc_list_bg2.png) no-repeat center center; background-size: contain; }
        .main1 .offset .list .li1 .font .btn .more {
      background: #ec8520; }
        .main1 .offset .list .li2 .font .btn .more {
      background: #058bd6; }

        @media (max-width: 1024px) {
     
            .main1 .offset .list > li {
      width: 50%; }
            .main1 .offset .list > li:nth-child(n) {
      clear: none; }
            .main1 .offset .list > li:nth-child(2n+1) {
      clear: both; }
            .main1 .offset .list > li .pic {
      margin-left: auto; margin-right: auto; }
        }

        @media (max-width: 600px) {
     
            .main1 .offset .list > li {
      width: 100%; }
            .main1 .offset .list > li:nth-child(n) {
      clear: none; }
        }

        @media (max-width: 300px) {
     
            .main1 .offset .list > li .pic {
      height: auto; width: auto; }
        }

        .main2 {
      background: url(picture/teacher_bg.jpg) no-repeat center center; height: 780px; padding-top: 70px; margin-top: 120px; }
        .main2 .right {
      float: right; background: #ec8718; }
        .main2 .intro .font {
      max-width: 750px; padding-top: 70px; }
        .main2 .intro .font .h1 {
      font-size: 18px; color: #333; padding-bottom: 40px; }
        .main2 .intro .font .p1 {
      color: #666; line-height: 30px; }
        .main2 .intro .font .more {
      color: #df3d47; margin-top: 20px; display: block; }
        .main2 .intro .list {
      overflow: hidden; margin-left: -24px; margin-bottom: -20px; margin-top: 60px; }
        .main2 .intro .list > li {
      float: left; padding-left: 24px; padding-bottom: 20px; }
        .main2 .intro .list > li .box {
      display: block; position: relative; }
        .main2 .intro .list > li .box img {
      border-radius: 20px; display: inline-block; max-width: 156px; }
        .main2 .intro .list > li .box:before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border: 4px solid #ec8718; opacity: 0; border-radius: 20px; }
        .main2 .intro .list > li .box:hover:before {
      opacity: 1; transition: ease .4s; }

        @media (max-width: 950px) {
     
            .main2 {
      background: #fbefe1; height: auto; padding-bottom: 50px; }
            .main2 .intro .font {
      max-width: none; text-align: center; }
            .main2 .intro .list > li {
      width: 25%; }
            .main2 .intro .list > li .box img {
      width: 100%; max-width: none; }
        }

        @media (max-w
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值