⛵ 源码获取 文末联系 ✈
Web前端开发技术
描述 网页设计题材,DIV+CSS 布局制作,HTML+CSS网页设计期末课程大作业 | 个人博客网站 | 个人主页介绍 | 个人简介 | 个人博客设计制作 | 等网站的设计与制作 | 大学生个人HTML网页设计作品 | HTML期末大学生网页设计作业
HTML:结构
CSS:样式
在操作方面上运用了html5和css3,
采用了div+css结构、表单、超链接、浮动、绝对定位、相对定位、字体样式、引用视频等基础知识
JavaScript:做与用户的交互行为
(1)html文件:其中index.html是首页、其他html为二级页面;
(2)css文件:css全部页面样式,文字滚动, 图片放大等;
(3)js文件:js实现动态轮播特效, 表单提交, 点击事件等等(网页中运用到js代码)
(1)首页:进入网页中看到的第一个页面(LOGO、公司名称、导航、banner、新闻、相关信息、底部信息、banner一般是5个
(2)二级页面:从首页点击进入之后的页面叫做二级页面
(3)三级页面:从二级页面点击进入的页面
网页html:网页是构成网站的基本元素,是承载各种网站应用的平台。通俗地说,网站就是由网页组成的
首页网站:首页是一个网站的入口网页,故往往会被编辑得易于了解该网站多数作为首页的文件名是index加上扩展名
导航菜单:是指位于页面顶部或者侧边区域的,也称之为导航栏,它起着链接站点或者软件内的各个页面的作用.
网页页脚:是网页中每个页面的底部的区域。常用于显示附加信息。如作者、备案号等。





doctype html>
<html>
<head>
<meta charset="utf-8">
<title>贝聿铭title>
<link rel="stylesheet" type="text/css" href="css/css.css">
<style>
/*banner begin*/
.benner{
width:1100px;
height: 500px;
margin:100px auto;}
.left1{
width: 250px;
height: 500px;
float: left;
margin:10px 20px auto auto;}
.tr{
width: 250px;
height: 250px;}
.benner .left1 .tr img{
padding:20px;
border:1px solid #666;
box-shadow:5px 5px 10px 2px #999 inset,-5px -5px 10px 2px #999 inset;}
.right1{
width: 800px;
height: 500px;
float: right;
margin-left:25px;
}
.benner .right1 img{
width:730px;
animation-name:mymove;
animation-duration:10s;}
@keyframes mymove{
from{
transform:translate(0) rotateY(180deg)};
50%{
transform:translate(10px) rotateY(180deg)};
51%{
transform:translate(10px) rotateY(0deg)};
to{
transform:translate(0) rotateY(0deg)};
}
/*banner end*/
/*content begin*/
.content{
width:1100px;
height:600px;
margin:10px auto;
position:relative;
}
.conone{
width:340px;
height:550px;
position:absolute;
left:0;
top:25px;}
.childone1{
width:340px;
height:450px;}
.childone2{
width:340px;
height:80px;
margin:20px auto;
background-image:radial-gradient(ellipse at center,#FFF ,#39506A);
background-repeat:no-repeat;
background-size:cover;
border-radius:6%;
font-family:"华文仿宋";
font-size:24px;
color:#000;
line-height:3;
font-weight:800;
text-align:center;}
.pb{
font-family:"华文仿宋";
font-size:24px;
line-height:1.5;
border-bottom: 1px solid #000;
margin:0 auto 10px auto; }
.ps<