总结:
网页的制作要用到html跟css的知识,制作一个好的网页对我来说是挺困难的,还是练得少,网页得制作,首先要学会布局,要知道,分为几个div块,然后在写文本,在文本中添加css样式,样网页的到美化的效果,好药注意的是用到浮动,要清除浮动的概念,防止塌陷
实例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <!-- 导入重置样式表 --> <link rel="stylesheet" type="text/css" href="css/reset.css"> <!-- 导入公共样式表 --> <link rel="stylesheet" type="text/css" href="css/common.css"> <!-- 导入首页样式表 --> <link rel="stylesheet" type="text/css" href="css/index.css"> <title>首页</title> </head> <body> <!-- 公共头部 --> <div class="header"> <div class="one"> <div class="tow"> <p class="left">欢迎访问某某安防消防工程有限公司~</p> <p class="right">咨询电话:020-22043297</p> </div> </div> <div class="tow"> <div class="logo"><img src="./3.jpg"></div> <div class="search"> <input type="text" name="name" placeholder="关键字"> <button>搜索</button> </div> </div> <!-- 导航 --> <div class="menu"> <div class="tow"> <ul> <li><a href="">网站首页</a></li> <li><a href="">公司简介</a></li> <li><a href="">新闻动态</a></li> <li><a href="">公司产品</a></li> <li><a href="">最新案例</a></li> <li><a href="">品牌加盟</a></li> <li><a href="">客户服务</a></li> <li><a href="">人才招聘</a></li> </ul> </div> </div> </div> <!-- 首页Banner图 --> <div class="banner"> <img src="./1.jpg" alt="图片"> <div class="line"></div> </div> <!-- 产品列表 --> <div class="product"> <!-- 标题部分 --> <div class="title"> <h2>产品<img src="./1.jpg" alt="">中心</h2> <p>局域网远程、外网远程、手机远程、让监控 无处不在</p> </div> <!-- 产品列表 --> <ul> <li> <a href=""><img src="./1.jpg"></a> <a href="">案例</a> </li> <li> <a href=""><img src="./1.jpg"></a> <a href="">案例</a> </li><li> <a href=""><img src="./1.jpg"></a> <a href="">案例</a> </li><li> <a href=""><img src="./1.jpg"></a> <a href="">案例</a> </li> <br> <li> <a href=""><img src="./1.jpg"></a> <a href="">案例</a> </li> <li> <a href=""><img src="./1.jpg"></a> <a href案例</a> </li><li> <a href=""><img src="./1.jpg"></a> <a href="">案例</a> </li><li> <a href=""><img src="./1.jpg"></a> <a href="">案例</a> </li> </ul> </div> <!-- 广告 --> <div class="ads-img"></div> <!-- 我们是做什么的 --> <div class="make"> <img src="./1.jpg"> <div class="refer"> <p>企业形象通用成品网站系列预装了网页模块、文章模块、产品模块、图文模块、招聘模块、广告模块等功能,预设了企业简介、企业文化、最新动态、产品展示、经典案例、品牌加盟、人才招聘、联系方式、客户留言等栏目,用户也可根据自己的需要方便调整;企业形象通用成品网站系列采用原创的企业形象宣传广告图片轮播,精心设计制作,符合大多数企业网站的需求,是企业建立形象宣传和产品展示网站的最佳之选...</p> <button>了解更多</button> </div> </div> <hr color="#efefef" size="1"> <!-- 新闻列表 --> <div class="news"> <div class="left"> <img src="./1.jpg" alt=""> </div> <div class="right"> <ul> <li> <span><h1>25</h1><p>2010-1</p></span> <a href="">本公司参加第八十届广州商</a> <p>本公司参加第八十届广州商品交易会本公司参加第八十届广州商品交易会</p> </li> <li><span><h1>25</h1><p>2010-1</p></span> <a href="">本公司参加第八十届广州商</a> <p>本公司参加第八十届广州商品交易会本公司参加第八十届广州商品交易会</p></li> <li><span><h1>25</h1><p>2010-1</p></span> <a href="">本公司参加第八十届广州商</a> <p>本公司参加第八十届广州商品交易会本公司参加第八十届广州商品交易会</p></li> <li><span><h1>25</h1><p>2010-1</p></span> <a href="">本公司参加第八十届广州商</a> <p>本公司参加第八十届广州商品交易会本公司参加第八十届广州商品交易会</p></li> </ul> </div> </div> <!-- 公共底部 --> <div class="footer"> <div class="tow"> <ul> <li><a href="">阿里云</a></li> <li><a href="">支付宝</a></li> <li><a href="">腾讯QQ</a></li> <li><a href="">百度搜索</a></li> <li><a href="">PHP中文网</a></li> <li><a href="">淘宝</a></li> <li><a href="">微信</a></li> <li><a href="">360</a></li> <li><a href="">谷歌</a></li> <li><a href="">百度</a></li> </ul> </div> <div class="bottom"> <p>CopyRight 2013 All Right Reserved 通用企业模版网站 ICP:xxxxxxxx 网站地图 </p> <p>地址 中国广东省广州市</p> </div> </div> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例
实例
/*公共样式表*/ /*公共头部的样式*/ .header { width: 100%; height: 170px; } .header .one { height: 28px; border-top: 1px solid #f5f5f5; border-bottom: 1px solid #f5f5f5; background-color: #fbfbfb; } .tow { width: 1140px; margin: auto; /*BFC:块级格式化上下文*/ overflow: hidden; } .header .tape .one .lett { float:left; } .header .tape .one .right{ float:right; } .header .info .logo { width: 440px; height: 88px; float: left; } .header .one .search { float:right; height: 88px; margin-right: 100px; margin-top: 10px; } .header .one .search input { width: 210px; height: 26px; border: 2px solid coral; margin: 18px 0; } .header .one .search button { width: 45px; height:32px; background-color: coral; border: none; color:white; margin-left: -40px; } /*头部菜单*/ .header .menu { width: 100%; height: 50px; background-color: black; } .header .menu ul li { float: left; line-height: 50px; padding: 0 40px; } .header .menu ul li a { font-size: 1.1em; color: #fff; } .header .menu ul li:hover { background-color: coral; cursor: pointer; } /*公共底部*/ .footer .tow { width: 100%; height: 40px; background-color: #3e3e3e; margin: auto; } .footer .tow ul { width: 1140px; margin: auto; } .footer .tow li { float:left; } .footer .tow li a { height: 100%; padding: 0 20px; color:#fff; text-align: center; line-height: 40px; } .footer .bottom { width: 100%; height: 92px; background-color: black; text-align: center; } .footer .bottom p { color: #fff; line-height: 92px; } /*首页专用的css样式表*/ .banner { /*border:1px solid red;*/ } .banner img { width: 100%; height: 452px; vertical-align: top; } .banner .line { height: 30px; background-color: red; opacity: 0.6; margin-top: -30px; } /*产品列表*/ .product { width: 1140px; margin: auto; margin-top: 30px; margin-bottom: 30px; overflow: hidden; } .product .title { text-align: center; background-image: url(./2.jpg); background-repeat: no-repeat; background-position: 0 0; } .product .title img { padding: 0 5px 0 5px; width: 30px; height: 30px; } .product li { width: 260px; height: 282px; text-align: center; margin:50px; float: left; } .product li img { width: 260px; height: 197px; margin-bottom: 10px; } .product li img:hover { opacity: 0.9; } /*广告图片*/ .ads-img { width: 100%; height: 410px; background-image: url(./1.jpg); background-repeat: no-repeat; margin-bottom: 50px; } /*我们做什么*/ .make { width: 1140px; margin: auto; margin-bottom: 50px; } .make img { width: 286px; height: 180px; float:left; margin-right: 50px; } .make .refer p { line-height: 2em; } .make .refer button { width: 130px; height: 34px; border: none; background-color: gray; color: #fff; } .make .refer button:hover { background-color: coral; cursor: pointer; } /*新闻列表*/ .news { width: 1140px; margin: auto; margin-top: 50px; margin-bottom: 50px; overflow: hidden; } .news .left { float:left; } .news .left img { width: 500px; height: 315px; } .news .right { overflow: hidden; } .news .right ul { margin-left: 50px; } .news .right ul li { height: 80px; } .news .right li span { float:left; width: 60px; height: 58px; background-color: black; } .news .right li span * { color: #fff; text-align: center; } /*样式重置*/ html { overflow-y: auto; overflow-x: hidden; } body, h1,h2,h3, ul,li,p { margin: 0; padding: 0; font-family: 'microsoft yehei', Verdana, Arial; color: #505050; } p, li, a { font-size: 14px; } ul, li { list-style-type: none; } a:link, a:visited, a:active { color: #505050; text-decoration: none; } a:hover { text-decoration: none; /*color: #ff0000;*/ color: #f00; }
运行实例 »
点击 "运行实例" 按钮查看在线实例