学生DW网页设计作业成品 html+css 制作我的网站主页 (web前端期末作业)

时间:2022-10-03 12:01:03

????文章目录


二、????网站介绍

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

????网站程序方面:计划采用最新的网页编程语言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代码)。


三、????网站效果

▶️1.视频演示

I74JP-自我介绍js默认(5页)

???? 2.图片演示

学生DW网页设计作业成品 html+css 制作我的网站主页 (web前端期末作业)


学生DW网页设计作业成品 html+css 制作我的网站主页 (web前端期末作业)


学生DW网页设计作业成品 html+css 制作我的网站主页 (web前端期末作业)


学生DW网页设计作业成品 html+css 制作我的网站主页 (web前端期末作业)


学生DW网页设计作业成品 html+css 制作我的网站主页 (web前端期末作业)


四、???? 网站代码

????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" />
</head>

<body>
<!----网站头部开始---->
<div class="logo"><img src="images/logo.jpg"/></div>
<div id="nav">
<ul>
<li><a class="hos" href="index.html">首页</a></li>
<li><a href="jiben.html">基本资料</a></li>
<li><a href="xingqu.html">兴趣爱好</a></li>
<li><a href="zuoyouming.html">座右铭</a></li>
<li><a href="pingjia.html">自我评价</a></li>
</ul>
</div>
<!-----网站头部结束-------------->
<!-----banner------->
<div class="box" id="box">
<div class="inner">
<!--轮播图-->
<ul>
<li><a href="#"><img src="images/banner1.jpg" alt=""></a></li>
<li><a href="#"><img src="images/banner2.jpg" alt=""></a></li>
<li><a href="#"><img src="images/banner3.jpg" alt=""></a></li>


</ul>

<ol class="bar">

</ol>
<!--左右焦点-->
<div id="arr">
<span id="left">
<
</span>
<span id="right">
>
</span>
</div>

</div>
</div>

<!------banner结束----->
<div class="main">
<div class="box4">
<img src="images/01.jpg">
<div class="right">
<h1>关于我</h1>
<br>
<p>我的的青春,有鲜红色的热情奔放,也有黑色的压抑无味。我一直希望有一个*的青春,做自己想要做的事;有一个快乐的青春,在海中畅所欲言;</p>
<br />
<p> 人生是一条漫长的路,充满荆棘与坎坷,如果说曲线比直线美,在于曲线是有转折的,富有流动的韵味,那么人生也就正是因为荆棘而多彩,因为坎坷而美丽。</p>

</div>
</div>

<div class="box4">
<img src="images/02.jpg">
<div class="right">
<h1>我的爱好</h1>
<br>
<p>大学喜欢上摄影,对摄影的喜爱,将近五年了。从数码相机到单反,再到现在手机摄影。</p>
<br />
<p>我开始明白摄影,它不单单依靠的是器材,我对于摄影的理解是它是我用来看待世界的方式,我摄影不但是为了展现美,我也可以用来创造美,让更多的人看到这样的美。</p>

</div>
</div>



<div class="box4">
<img src="images/03.jpg">
<div class="right">
<h1>座右铭</h1>
<br>
<p>我读的书愈多,就愈亲近世界,愈明了生活的意义,愈觉得生活的重要。</p>
<br />
<p>人生并不像火车要通过每个站似的经过每一个生活阶段。人生总是直向前行走,从不留下什么。</p>
<br />

<p>人生最精彩的不是实现梦想的一瞬间,而是坚持梦想的过程。</p>

</div>
</div>

</div>
<div class="foot">©2019 我的个人网站主页 版权所有</div>
<script type="text/javascript" src="js/banner.js"></script>
</body>

</html>

????CSS样式代码

body {
margin: 0 auto;
font-size: 14px;
font-family: "微软雅黑";
line-height: 22px;
background: #d8d7d7;
}

div,p,input,ul,li,h1,h2,h3,h4,h5,h6,dl,dt,dd {
height: auto;
margin: 0;
padding: 0;
vertical-align: middle;
}

li {
list-style: none;
}

img {
border: 0;
margin: 0;
padding: 0;
}

a:link {
color: #333;
text-decoration: none;
}

a:hover {
color: #629705;
text-decoration: none;
overflow: hidden;
}

.logo {
width: 1000px;
height: 166px;
margin: 0 auto;
}

#nav {
width: 1000px;
height: 50px;
background: #fdc14c;
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: #20201f;
font-family: "微软雅黑";
font-size: 16px;
margin-left: 2px;
display: block;
font-weight: bold;
}

#nav li a:hover {
color: #fff;
background: #d58f08;
}



.xq-box01 .xiangq {
width: 420px;
height: 200px;
padding: 20px;
border-top: none;
background: #e5e4e2;
}

.xq-box01 .xiangq h1 {
height: 40px;
font-size: 16px;
line-height: 40px;
margin-bottom: 10px;
border-bottom: #D8D7D7 1px solid;
}

.xq-box01 .xiangq p {
font-size: 12px;
text-indent: 2em;
}

.pingjia-box01 {
width: 840px;
margin: 0 auto;
margin-top: 0px;
margin-bottom: 0px;
margin-top: 30px;
margin-bottom: 20px;
}

.pingjia-box01 img {
width: 300px;
height: 160px;
float: left;
margin-top: 20px;
margin-right: 20px;
}

.pingjia-box01 .bx1 {
height: 220px;
padding: 20px;
border: #333333 1px solid;
margin-bottom: 20px;
}

.pingjia-box01 .bx1 h1 {
font-size: 16px;
height: 40px;
line-height: 40px;
padding-left: 10px;
background: #75b980;
}

.pingjia-box01 .bx1 p {
color: #787676;
font-size: 14px;
line-height: 30px;
text-indent: 2em;
}

.zym-box01 {
width: 840px;
height: auto;
margin: 0 auto;
margin-top: 10px;
}

.zym-box02 {
margin-top: 10px;
line-height: 25px;
font-size: 14px;
width: 840px;
margin: 0 auto;
margin-bottom: 20px;
}

.scroll {
height: 90px;
width: 100%;
overflow: hidden;
position: relative;
margin-top: 30px;
}

.scroll ul {
width: 100%;
position: absolute;
left: 0;
top: 0;
}

.scroll span {
font-size: 20px;
height: 30px;
}

.scroll li {
height: 30px;
line-height: 30px;
}