👨🎓学生HTML静态网页基础水平制作👩🎓,页面排版干净简洁。使用HTML+CSS页面布局设计,web大学生网页设计作业源码,这是一个不错的旅游网页制作,画面精明,排版整洁,内容丰富,主题鲜明,非常适合初学者学习使用, 这个实例比较全面,有助于同学的学习,本文将介绍如何通过从头开始设计个人网站并将其转换为代码的过程来实践设计。
# 一、👨🎓网站题目 🍵茶文化网站、🏳️🌈中华传统文化题材、京剧文化🔏水墨风书画、中国民间年画文化艺术网站 、等网站的设计与制作。
二、✍️网站描述
🏷️ 这个首页代码运用了DIV盒子的使用方法,如盒子的嵌套、浮动、margin、border、background等属性的使用,外部大盒子设定居中,内部左中右布局,下方横向浮动排列,大学学习的前端知识点和布局方式都有运用,CSS的代码量也很足、很细致,使用hover来完成过渡效果、鼠标滑过效果等,使用表格、表单补充模块,为方便新手学习, 个别源码页面中没有使用js有需要的可以自行添加。
🏅 一套优质的💯网页设计应该包含 (具体可根据个人要求而定)
- 页面分为页头、菜单导航栏(最好可下拉)、中间内容板块、页脚四大部分。
- 所有页面相互超链接,可到三级页面,有5-10个页面组成。
- 页面样式风格统一布局显示正常,不错乱,使用Div+Css技术。
- 菜单美观、醒目,二级菜单可正常弹出与跳转。
- 要有JS特效,如定时切换和手动切换图片轮播。
- 页面中有多媒体元素,如gif、视频、音乐,表单技术的使用。
- 页面清爽、美观、大方,不雷同。 。
- 不仅要能够把用户要求的内容呈现出来,还要满足布局良好、界面美观、配色优雅、表现形式多样等要求。
三、📚网站介绍
📔网站布局方面:计划采用目前主流的、能兼容各大主流浏览器、显示效果稳定的浮动网页布局结构。
📓网站程序方面:计划采用最新的网页编程语言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 rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<div class="wrap">
<div class="top">
<div class="logo"><img src="images/logo.png" width="404" height="125" /></div>
<div class="nav">
<ul>
<li><a href="index.html">首页</a></li>
<li><a href="introduce.html">介绍</a></li>
<li><a href="center.html">中心</a></li>
<li><a href="art.html">艺术</a></li>
<li><a href="about.html">关于</a></li>
</ul>
</div>
<div class="s_btn"></div>
</div>
<div class="art_box"><img src="images/art_01.png" width="1024" height="528" /></div>
<div class="box2">
<div class="box_c">
<div class="box_z"><p>宝贵的民间文化。每张脸谱,都承载着<br />它的生命。</p></div>
<div class="box_e"><img src="images/tu_02.png" width="154" height="124" /></div>
</div>
</div>
<div class="box3">
<div class="lj1">
<a href="#">网站地图</a>
<a href="#" style="margin-top:30px;">隐私政策</a>
<a href="#" style="margin-top:60px;">简体中文 / English </a>
</div>
<div class="lj1">
<a href="#">联系我们</a>
<a href="#" style="margin-top:30px;">常见问题与回复</a>
</div>
<div class="bq"></div>
</div>
<div class="foot">
<div class="backTop"><a href="#"><img src="images/tu_03.png" width="27" height="24" /></a></div>
</div>
</div>
</body>
</html>
💒CSS样式代码
@charset "utf-8";
/* CSS Document */
body,p{margin:0; padding:0; font-family:"黑体";}
ul{list-style:none; margin:0; padding:0;}
.wrap{
width:1024px;
height:auto;
margin:0 auto;
}
.top{
width:1024px;
height:125px;
float:left;
background:url(../images/T-bg_01.png);
background-repeat:repeat-x;
}
.logo{
width:404px;
height:125px;
float:left;
margin-left:94px;
}
.nav{
width:300px;
height:18px;
float:left;
margin-top:58px;
margin-left:20px;
}
.nav li{float:left;}
.nav li a{
font-family:"黑体";
font-size:12px;
line-height:18px;
display:block;
width:60px;
text-align:center;
color:#3d3935;
text-decoration:none;
}
.nav li a:hover{
color:#F00;
}
.s_btn{
width:36px;
height:39px;
float:left;
background:url(../images/s-1.png) no-repeat;
margin-top:40px;
margin-left:20px;
}
.ban-box{
width:1024px;
height:398px;
float:left;
background:#ac977e;
}
#ban{
width:589px;
height:363px;
float:left;
background:url(../images/ban.png) no-repeat;
margin-left:218px;
}
#t1_box{
width:1024px;
height:20px;
float:left;
}
#t1_1{
width:auto;
float:left;
margin-left:138px;
}
#t1_1 a{font-size:12px; text-decoration:none; color:#000000;}
#t1_1 a:hover{color:#666; text-decoration:underline;}
#gd{
width:78px;
height:19px;
float:left;
margin-left:211px;
background:url(../images/btn_01.png) top right no-repeat;
}
#gd a{font-size:12px; text-decoration:none; color:#000; line-height:19px;}
#gd a:hover{color:#666;}
#box1{width:1024px; height:394px; float:left; background:url(../images/tu.png) no-repeat;}
.box2{width:1024px; height:206px; float:left; background:#ac977e;}
.box_c{width:576px; height:206px; margin:0 auto;}
.box_z{width:319px; height:55px; float:left; margin-top:74px;}
.box_z p{font-family:18px; line-height:30px; font-weight:bold;}
.box_e{width:154px; height:124px; float:left; margin-top:38px; margin-left:89px;}
.box3{width:1024px; height:207px; float:left; background-color:#d4c7b7;}
.lj1{width:99px; height:155px; float:left; margin-top:48px; margin-left:137px;}
.lj1 a{font-size:10px; color:#000; text-decoration:none; display:block; width:99px;}
.bq{width:auto; height:12px; float:left; margin-left:212px; margin-top:164px; font-size:10px; color:#000;}
.foot{width:1024px; height:44px; float:left; background:#ac977e;}
.backTop{width:27px; height:25px; float:right; margin-right:38px; margin-top:11px;}
.art_box{width:1024px; height:auto; float:left;}
#te{width:1024px; height:220px; float:left; background:#ac977e;}
.he1{
width:205px;
height:170px;
float:left;
margin-top:44px;
}
.bt_box{
width: 171px;
height: 21px;
float: left;
margin-left: 38px;
font-size: 14px;
line-height: 21px;
color: #000000;
}
.fr{float:right;}
.text1{width:205px; height:auto; float:left; margin-top:12px;}
.z{font-size: 10px; line-height: 18px; color: #000000;}
#form_box{
width:1024px;
height:620px;
float:left;
background:#f8f8f8;
}
#form_wtap{
width:760px;
height:477px;
float:left;
margin-top:31px;
margin-left:140px;
}
.line_box{
width:760px;
height:auto;
float:left;
margin-bottom:20px;
}
.left_box{
width: 155px;
height: auto;
float: left;
padding-top: 10px;
font-size: 12px;
font-weight:bold;
color: #000000;
}
#wbqy{
width:579px;
height:141px;
float:left;
padding-top:10px;
padding-bottom:2px;
padding-left:10px;
background-image:url(../images/from_01.jpg);
background-repeat:no-repeat;
}
#wbqy textarea{
width:560px;
height:130px;
border:none;
overflow:hidden;
}
.ipt_box{
width:573px;
height:25px;
float:left;
padding:8px;
background-image:url(../images/from_02.jpg);
background-repeat:no-repeat;
}
.ipt_box input{
width:560px;
height:22px;
border:none;
background:none;
}
#sub_btn{
width:581px;
height:55px;
font-size:18px;
font-weight:bold;
color:#000;
background-image:url(../images/sub-1.png);
background-repeat:no-repeat;
border:none;
cursor:pointer;
margin-left:158px;
}
六、🥇 如何让学习不再盲目
第一、带着目标去学习,无论看书报课还是各种线下活动。
首先要明确自己的学习目标是什么,是想解决什么问题,实现怎样的目标。
第二、学习要建立个人知识体系
知识是学不完的,书籍是浩如烟海的。我们尽情徜徉其中的时候,千万不要被海水淹死,没有自我了。在学习过程中,我们会发现每一个知识点都是有她的边界和背景的,我们要善于归纳整理知识
第三、学到了就要用到
有时,我们一天下来感觉学到了很多干货,那么我们一定要将这些知识点和实际工作和生活联系起来。知识和实践相互联系靠拢。爱学习是一件好事,但只有会学习的人,才有价值。
七、🎁更多干货
1.如果我的博客对你有帮助、如果你喜欢我的博客内容,请 “👍点赞” “✍️评论” “💙收藏”
一键三连哦!
2.💗【👇🏻👇🏻👇🏻关注我| 💬获取更多源码 | 优质文章】
带您学习各种前端插件、3D炫酷效果、图片展示、文字效果、以及整站模板 、大学生毕业HTML模板 、期末大作业模板 、等! 「在这里有好多 前端 开发者,一起探讨 前端 Node 知识,互相学习」!
3.