• HTML大学班级活动网页设计 、大学校园HTML实例网页代码 、本实例适合于初学HTML的同学


    🎉精彩专栏推荐👇🏻👇🏻👇🏻
    ✍️ 作者简介: 一个热爱把逻辑思维转变为代码的技术博主
    💂 作者主页: 【主页——🚀获取更多优质源码】
    🎓 web前端期末大作业: 【📚毕设项目精品实战案例 (1000套) 】
    🧡 程序员有趣的告白方式:【💌HTML七夕情人节表白网页制作 (110套) 】
    🌎超炫酷的Echarts大屏可视化源码:【🔰 echarts大屏展示大数据平台可视化(150套) 】
    🎁 免费且实用的WEB前端学习指南: 【📂web前端零基础到高级学习视频教程 120G干货分享】
    🥇 关于作者: 历任研发工程师,技术组长,教学总监;曾于2016年、2020年两度荣获CSDN年度十大博客之星。 十载寒冰,难凉热血;多年过去,历经变迁,物是人非。 然而,对于技术的探索和追求从未停歇。 💪坚持原创,热衷分享,初心未改,继往开来!



    一、👨‍🎓网站题目

    🧑个人网页设计、🙋‍♂️个人简历制作、👨‍💼简单静态HTML个人网页作品、👨‍🏭个人介绍网站模板 、等网站的设计与制作。


    二、✍️网站描述

    ⭐HTML实例网页代码, 本实例适合于初学HTML的同学。该实例里面有设置了css的样式设置,有div的样式格局,这个实例比较全面,有助于同学的学习,本文将介绍如何通过从头开始设计个人网站并将其转换为代码的过程来实践设计。

    🏅 一套A+的网页应该包含 (具体可根据个人要求而定)

    1. 页面分为页头、菜单导航栏(最好可下拉)、中间内容板块、页脚四大部分。
    2. 所有页面相互超链接,可到三级页面,有5-10个页面组成。
    3. 页面样式风格统一布局显示正常,不错乱,使用Div+Css技术。
    4. 菜单美观、醒目,二级菜单可正常弹出与跳转。
    5. 要有JS特效,如定时切换和手动切换图片轮播。
    6. 页面中有多媒体元素,如gif、视频、音乐,表单技术的使用。。
    7. 页面清爽、美观、大方,不雷同。 。
    8. 不仅要能够把用户要求的内容呈现出来,还要满足布局良好、界面美观、配色优雅、表现形式多样等要求。

    三、📚网站介绍

    📔网站布局方面:计划采用目前主流的、能兼容各大主流浏览器、显示效果稳定的浮动网页布局结构。

    📓网站程序方面:计划采用最新的网页编程语言HTML5+CSS3+JS程序语言完成网站的功能设计。并确保网站代码兼容目前市面上所有的主流浏览器,已达到打开后就能即时看到网站的效果。

    📘网站素材方面:计划收集各大平台好看的图片素材,并精挑细选适合网页风格的图片,然后使用PS做出适合网页尺寸的图片。

    📒网站文件方面:网站系统文件种类包含:html网页结构文件、css网页样式文件、js网页特效文件、images网页图片文件;

    📙网页编辑方面:网页作品代码简单,可使用任意HTML编辑软件(如:Dreamweaver、HBuilder、Vscode 、Sublime 、Webstorm、Text 、Notepad++ 等任意html编辑软件进行运行及修改编辑等操作)。
    其中:
    (1)📜html文件包含:其中index.html是首页、其他html为二级页面;
    (2)📑 css文件包含:css全部页面样式,文字滚动, 图片放大等;
    (3)📄 js文件包含:js实现动态轮播特效, 表单提交, 点击事件等等(个别网页中运用到js代码)。


    四、🌐网站演示

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


    五、🔧 网站代码

    🧱HTML结构代码

    DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>网站首页title>
    <link href="css/style.css" rel="stylesheet" type="text/css" />
    <script src="js/banner.js" type="text/jscript">script>
    head>
    
    <body>
    
    <div class="top">div>
    <div id="nav">
    <ul>                            
    <li><a class="host" href="index.html">网站首页a>li>
    <li><a href="about.html">关于我们a>li>
    <li><a href="huodong.html">班级活动a>li>
    <li><a href="fengjing.html">学院风景a>li>
    <li><a href="xiangce.html">活动相册a>li>
    ul>
    div>
    
    
    <div class="main">
    <div class="wrap" id="wrap">
        <ul id="pic">
            
    
            <li><img src="images/banner1.jpg" alt="">li>
         <li><img src="images/banner2.jpg" alt="">li>
         <li><img src="images/banner3.jpg" alt="">li>
    
        ul>
        <ol id="list">
            <li class="on">1li>
            <li>2li>
            <li>3li>
    
        ol>
    div>
    <div class="nr">
    <div class="tit-s">关于我们<span><a href="about.html">更多 > >a>span>div>
    <div class="box1">
    <div class="box1-left"><img src="images/gr.jpg" />div>
    <div class="box1-right">
    <P>河北科技大学环境科学与工程学院现有环境工程、环境科学、给水排水工程、安全工程四个教学系,其中环境工程专业于1977年开始招收本科生,是国内首批设置环境类专业的七所高校之一。现为教育部环境科学与工程专业教学指导委员会成员单位和高等学校安全工程学科教学指导委员会成员单位。P>
    <P>拥有环境科学与工程一级学科硕士学位授权点(2005年),环境工程省级重点学科(1994年),2016年环境科学与工程学科被河北省列为国家一流建设学科。学院坚持以人为本,以本科教学为中心,以提高人才培养质量和服务地方经济建设为总体目标,以学科建设为龙头,取得了丰硕成果,办学实力和水平逐步提升。国家和省领导多次来学院视察指导,对各项工作均给与了肯定的评价。P>
    <P>师资队伍:学院现有教职工82人,其中专职教师63人。教师中教授25人,副教授21人;博士56人;硕士生导师36人,校外特聘导师11人。教师中享有国务院特殊津贴专家1人,河北省有突出贡献中青年专家2人,河北省"三三三"三层次人才4人,河北省教学名师1人,校级教学名师5人。是一支结构合理、业务精湛、富有创新精神的师资队伍。P>
    div>
    
    div>
    <div class="tit-s">活动相册<span><a href="xiangce.html">更多 > >a>span>div>
    <div class="caiz">
    <ul>
    <li><a href="xiangce.html"><img src="images/dg1.jpg"><p>6·19水务公益日p>a>li>
    <li><a href="xiangce.html"><img src="images/dg2.jpg"><p>毕业典礼p>a>li>
    <li><a href="xiangce.html"><img src="images/dg3.jpg"><p>招生宣传工作p>a>li>
    <li><a href="xiangce.html"><img src="images/dg4.jpg"><p>入党宣誓大会p>a>li>
    ul>
    div>
    <div class="tit-s">班级活动<span><a href="huodong.html">更多 > >a>span>div>
    <div class="news-box">
    <ul>
    <li class="mar30"><a href="huodong01.html">
    <img class="scm" src="images/hd01.jpg">
    <h1>入党宣誓大会h1>
    <p>6月13日下午,环工学院于讲堂群201举行入党宣誓大会。会上,29名新发展的学生党.....p>
    <p>2019-06-13   admin   <span>32span>p>
    a>
    li>
    <li><a href="huodong02.html">
    <img class="scm" src="images/hd02.jpg">
    <h1>学生党员政治理论学习会h1>
    <p>近日,学院学生党总支于公教楼C105开展了以"不忘初心,牢记使命"为主题的政治理论学习会议.....p>
    <p>2019-06-13   admin   <span>32span>p>
    a>
    li>
    <li class="mar30"><a href="huodong03.html">
    <img class="scm" src="images/hd03.jpg">
    <h1>6·19水务公益日h1>
    <p>6月19日上午,由河北建投水务投资有限公司与河北科技大学主办.....p>
    <p>2019-06-19   admin   <span>32span>p>
    a>
    li>
    <li><a href="huodong04.html">
    <img class="scm" src="images/hd04.jpg">
    <h1>毕业典礼h1>
    <p>6月21日上午,环工学院于讲堂群402举行了2019届本科毕业生毕业典礼暨学位授予仪式。.....p>
    <p>2019-06-21   admin   <span>32span>p>
    a>
    li>
    
    ul>
    div>
    div>
    
    div>
    
    
    <div class="foot">
    <div class="banq">
    版权所有 @河北科技大学环境科学与工程学院 班级活动页面
    div>
    div>
    
    body>
    html>
    
    
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111

    💒CSS样式代码

    
    @charset "utf-8";
    /* CSS Document */
    
    
    body{ margin:0 auto; font-size:14px; font-family: "微软雅黑"; line-height:22px; background:#fbf6d9    }
    
    div,p,input,ul,li,p,h1,h2,h3,h4,h5,h6,dl,dt,dd{ height:auto; margin:0;; padding:0; vertical-align:middle ;}
    
    li{ list-style:none;}
    
    a{ text-decoration:none;}
    
    .ul{ list-style:none;}
    
    .divclear{ clear:both;}
    
    img{ border:0; margin:0; padding:0;}
    .clear{zoom:1;}
    .clear:afear{content:'.'; clear:both; display:block; height:0; visibility:hidden;}
     a{color:#333;}
    
     a:link{ color:#333;}
    
     a:hover {color:#629705;text-decoration:none;overflow:hidden;}
    
    /*---网页开始-----*/
    
    
    /*---top开始-----*/
    .top{ width:1000px; height:179px; margin:0 auto; padding-top:10px; background:url(../images/top-bg.jpg) no-repeat; }
    #nav{ width:1000px; height:50px; background:#1f8a07; margin:0 auto;}
    #nav ul{ width:1000px; height:50px; line-height:50px; font-size:14px;  margin:0 auto;}
    #nav ul li{ width: 200px; height:50px; line-height:50px; color:#FFF; float:left; text-align:center;}
    #nav li a {
    	color:#FFF;
    	font-family: "微软雅黑";
    	font-size:16px;
    	margin-left: 2px;
    	display: block;
    	font-weight:bold;
    }
    #nav li a:hover, #nav li.hover a {
    
    	text-decoration: none;
    	color:#fff;
    	background:#217210;
    }
    .main{     width: 1000px;
        margin: 0 auto;
        height: auto;
        overflow: hidden;
    }
    .host{color:#fff;
    	background:#217210;}
    /*---top结束-----*/
    .wrap {
    	height:382px;
    	width:1000px;
    	position:relative;
    	overflow:hidden;
    }
    .wrap ul {
    	position:absolute;
    }
    .wrap ul li {
    	height:382px;
    }
    .wrap ol {
    	position:absolute;
    	right:5px;
    	bottom:10px;
    }
    .wrap ol li {
    	height:20px;
    	width:20px;
    	background:#ddd;
    	border:1px solid #969591;
    	border-radius:50%;
    	margin-left:5px;
    	color:#959490;
    	float:left;
    	text-align:center;
    	cursor:pointer;
    }
    .wrap ol .on {
    	background:#8F9E9E;
    	color:#fff;
    }
    .nr{width: 1000px;
    height: auto;
    overflow: hidden;
    background: #FFF;
    padding-top: 20px;
    padding-bottom: 20px;
    
    }
    .nr span{ color:#900;}
    .box1{ width:1000px; height:260px;}
    .box1-left{ width:200px; height:220px; padding:20px; float:left;}	
    .box1-right{ width:740px; margin-left:20px; height:220px; float:left;margin-top: 20px;}
    .box1-right-tit{ font-size: 16px;color: #333;font-weight: bold; height:40px; line-height:40px;}
    .box1-right p{ font-size:14px; line-height:22px; text-indent:2em;}
    .tit{ font-size: 16px;height:40px; line-height:40px;
    color: #333;
    margin-left: 20px;
    font-weight: bold;}
    .box2{padding: 0px 20px;}
    .box2 p{ font-size:14px; line-height:22px;text-indent:2em; }
    .tit-s {
        font-size: 16px;
        height: 40px;
        line-height: 40px;
        color: #333;
        margin-left: 20px;
        font-weight: bold;
        border-bottom: #666 1px dashed;
    	width: 960px;
    }
    .tit-s span{ float:right; font-weight:normal; font-size:12px;}
    .imgs{ display:block; margin:0 auto;}
    /*---news----*/
    .news{ width:100%; height:600px; background:#FFF;}
    .news-ner{ width:1200px; height:600px; margin:0 auto; margin-top:50px;}
    .news-box{ width: 960px;
    height: auto;
    margin: 0 auto;
        margin-top: 0px;
    margin-top: 0px;
    margin-top: 30px;}
    .news-box ul li{ width: 465px;
    height: 88px;
    margin-bottom: 25px;
    float: left;}
    .news-box ul li .scm{ width:144px; height:88px; margin-right:15px; float:left;}
    .news-box ul li h1{ height:30px; line-height:30px; color:#4a525a; font-size:16px; font-weight:normal;}
    .news-box ul li p{ font-size:12px; color:#666;}
    .news-box ul li span{background: url(../images/ico01.jpg) 0px 0px no-repeat;
    padding-left: 20px;color: #666 !important;}
    .mar30{ margin-right:30px;}
    /*---活动开始-----*/
    .lv-box{ width:1000px; height:225px; padding:20px;}
    .lv-box img{ width:300px; height:203px; float:left; margin-right:20px;}
    .lv-box-r{ width:605px; height:225px; float:left;}
    .lv-box .lv-tit{ font-size:16px; height:40px; line-height:40px; font-weight:bold;}
    .lv-box p{ font-size:14px; line-height:30px; float:left; text-indent:2em;}
    .lv-box-r span{ color:#F00;}
    /*风景*/
    .xc{width: 854px;height: 387px;padding-top: 20px;font-size: 0;margin: 0 auto;}
    .xc img{float: left}
    .xcbtn{width: 854px;height: 349px;font-size: 0;padding-top: 9px;margin: 0 auto;}
    /*相册*/
    .caiz{ width:100%; height: auto; overflow:hidden;}
    .caiz ul{margin-top: 20px;
    padding: 0px 10px;}
    .caiz ul li
    {
    width: 233px;
    height: 250px;
    padding: 5px;
    float: left;
    	} 
    .caiz ul li img{     
    width: 230px;
    height: 200px;
    }
    .caiz ul li p{ font-size:14px; line-height:24px;text-align: center;}
    .geyan{ padding:20px; height:300px;}
    .neirong {
        width: 960px;
        height: auto;
        overflow: hidden;
        background: #FFF;
    	padding:20px;
    }
    .neirong p{ text-indent:2em}
    .neirong img{ display:block;margin:0 auto; margin-top:10px; margin-bottom:10px; }
    .title{ font-size: 16px;height:80px; line-height:40px; width:960px; margin:0 auto; text-align:center;
    color: #333;
    margin-left: 20px;
    font-weight: bold;
    border-bottom:#CCC 1px dashed; margin-bottom:20px;}
    .title2{ height:30px; line-height:30px; font-size:12px; text-align:center; color:#999;font-weight: normal;}
    .title2 span {
        background: url(../images/ico01.jpg) 0px 0px no-repeat;
        padding-left: 20px;
        color: #666 !important;
    	font-weight: normal;
    }
    .box2{padding: 0px 20px;}
    /*---foot开始-----*/
    .foot{width: 1000px;
    height: 83px;
    background:#62bb47;
    margin: 0 auto;
    padding-top: 60px;}
    .banq{ width:1000px; height:40px; line-height:40px;color:#FFF; margin:0 auto ; text-align:center; }
    /*---foot结束-----*/
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200

    六、🥇 如何让学习不再盲目

    很多刚入门编程的小白学习了基础语法,却不知道语法的用途,不知道如何加深映像,不知道如何提升自己,这个时候每天刷自主刷一些题就非常重要(百炼成神),可以去牛客网上的编程初学者入门训练。该专题为编程入门级别,适合刚学完语法的小白练习,题目涉及编程基础语法,基本结构等,每道题带有练习模式和考试模式,可还原考试模式进行模拟,也可通过练习模式进行练习 。


    七、🎁更多干货

    1.如果我的博客对你有帮助、如果你喜欢我的博客内容,请 “👍点赞” “✍️评论” “💙收藏” 一键三连哦!

    2.💗【👇🏻👇🏻👇🏻关注我| 获取更多源码 | 优质文章】 带您学习各种前端插件、3D炫酷效果、图片展示、文字效果、以及整站模板 、大学生毕业HTML模板 、期末大作业模板 、等! 「在这里有好多 前端 开发者,一起探讨 前端 Node 知识,互相学习」!

    3.

    以上内容技术相关问题💌欢迎一起交流学习👇🏻👇🏻👇🏻🔥

    在这里插入图片描述

  • 相关阅读:
    多御安全浏览器chromium95内核更新:上网速度更快
    基于Flask框架实现Mock Server
    sync.Mutex源码解读
    计算机毕业设计Java网上教学管理系统(源码+系统+mysql数据库+Lw文档)
    一文2000字从0到1用Jmeter全流程性能测试实战
    聊下自己转型测试开发的历程
    如何利用OpenGL巧妙实现GPU仿真
    旋转变压器软件解码simulink仿真
    函数的参数
    力扣刷题day49|647回文子串、516最长回文子序列
  • 原文地址:https://blog.csdn.net/VX_WJ88950106/article/details/128180934