HTML連載56-網易註冊界面實戰之所有代碼

1、今天完成了網易郵箱註冊界面的所有編寫,編寫一個小小的網頁就須要這麼多時間來進行設計、測量、排版、編寫、測試,才能進行使用,同時編寫這個網頁複習了幾乎前面的全部內容,最後來一個彙總就能夠了。html

 

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>D139_FrameworkeOfNeteasyInterface</title>

    <style>

        .header{

            width:960px;

            height:80px;

            /*background-color: red;*/

            margin: 0 auto;

            overflow: hidden;

            padding-top:14px;

            box-sizing: border-box;/*這裏咱們採用內上邊距的辦法將logo擠下去達到垂直居中的目的*/

            /*同時這個box-sizing的屬性就是將這個header固定住,不讓他由於內邊距而變化大小了*/

        }

        .content{

            width: 960px;

            height: 600px;

            /*background-color: blue;*/

            margin: 0 auto;}

        .footer{

            width: 960px;

            height: 48px;

            /*background-color: yellow;*/

            margin: 0 auto ;

        }

        .header .logo{

            width:748px;

            height: 47px;

            background:url("image/netEasyLogo.jpg") no-repeat 0 0;/*從圖片的座標(0,0)開始鋪,no-repeat就是隻鋪這一張不要多鋪*/

            /*margin-top: 12px;*/

            float:left;

        }

        .header .links{

            height: 42px;

            width: 150px;

            /*background-color: red;*/

            float:right;

        }

        .header .logo a {

            width:156px;

            height:45px;/*測量出那一塊區域,而後這一塊區域都是超級連接*/

            /*background-color: red;*/

            display: inline-block;/*轉換爲行內塊級標籤*/

        }

        .header .links a{

            text-decoration:none;/*去掉下劃線*/

            font-size: 16px;

            color:black;

            line-height: 45px;/*這裏複習了文字不能居中,使用這個屬性讓它和links盒子的高度一致,那就作到文字在盒子中居中*/

            text-align: right;/*複習了文字右對齊*/

        }

        .content{

            width: 960px;

            height: 600px;}

        .content .top{

            width: 960px;

            height: 38px;

            /*background-color: red;*/

            background: url("image/wangyi_center.jpg") 0 0;/*讓這張小圖片把top這個區域所有鋪滿*/

            /*border: solid black 1px;*/

        }

        .content .bottom{

            width: 960px;

            height: 562px;

            /*background-color: green;*/

            border: solid black 1px;

        }

        /*下面這兩個屬性設置,就是爲了content的top部的兩邊能使用咱們指定的格式,咱們採用的盒子嵌套盒子來進行背景的演示*/

        /*.content .top .left{*/

            /*width:960px;*/

            /*height: 38px;*/

            /*background:url("image/line_left.jpg") no-repeat left 0 ;*/

            /*!*display: inline;*!*/

        /*}*/

        /*.content .top .left .right{*/

            /*width:960px;*/

            /*height: 38px;*/

            /*background:url("image/line_left.jpg") no-repeat right 0 ;*/

        /*}*/

        .content .top .left .right h3{

            color: white;

            line-height:38px;/*設置行高就是爲了讓文字可以在top條中垂直居中*/

            text-align: center;/*文字水平居中,固然咱們也能夠設置margin-left來設置左邊距,可是一旦分辨率改變將致使網頁變形*/

        }

        .content .bottom .article{

            width:638px;

            height: 562px;

            /*background-color: red;*/

            float:left;/*這裏填寫了這個float屬性才行,而且右面的盒子也須要float屬性,div是行內標籤,不寫float會另起一行*/

            box-sizing: border-box;/*這個設置是爲了讓外面的大盒子不會由於設置內邊距,而致使外面的的大盒子變形*/

            padding-top:50px;/*這裏咱們設置了內邊距,那麼裏面的內容就能夠從這裏面進行配置了,一開始我想到的是不設置這個內邊距*/

            /*讓裏面的東西有外邊距,固然這樣也能夠達到效果,可是有一個缺點,裏面的每個盒子都要單獨設置外邊距,相比設置*/

            /*外面盒子的內邊距會更加省力,並且裏面的內容,天然而然就會對齊*/

            padding-left: 80px;

        }

        .content .bottom .aside{

            width: 320px;/*這裏咱們原本寫的322,可是發現寫上322就會形成aside這個圖片溢出到下面了,原來是左邊距有2px.這樣*/

            /*320+2+638=960就正好了,溢出緣由就是float屬性致使的,達到了962,就裝不下了*/

            height: 562px;

            /*background-color: green;*/

            background:url("image/content_aside.jpg") no-repeat 0;

            float:right;

            border-left:2px black solid;

        }

        .content .article .articletop{

            width: 560px;

            height: 60px;

            /*background-color: yellow;*/}

        .content .article .articletop ul{

            width: 511px;

            height: 34px;

            /*background-color: tomato;*/

            list-style:none;/*這個屬性是爲了去掉li的小圓點*/}

        .content .article .articletop ul li{

            float:left;

            width: 137px;

            height: 34px;

            /*background-color: skyblue;*/

            line-height: 37px;

            text-align: center;/*文字水平居中*/

            background:url("image/content_article.jpg") 0 0;

            border:1px solid black;

        }

        .content .article .articlebottom{

            width: 560px;

            height: 373px;

            background-color: white;

        }

        .content .article .articlebottom .line{

            width: 413px;

            height: 28px;

            /*background-color: yellow;*/

        }

        .content .article .articlebottom .line span{

            float:left;

            height: 28px;

            width: 80px;

            font-size:12px;

            line-height:28px;

            text-align:left;

        }

        .content .article .articlebottom .line .star{

            width: 6px;

            float:left;

        }

        .content .article .artilclebottom .line div{

            float: left;

            height: 28px;

            height: 333px;

        }

        .content .bottom .articlebottom .line input{

            width: 214px;

            height: 18px;

        }

        .content .bottom .articlebottom .line select{

            width: 80px;

            height: 24px;

        }

        .content .bottom .articlebottom p{

            /*text-align: left;*/

            font-size: 12px;

            margin-left: 110px;

        }

        .content .bottom .articlebottom .service{

            /*text-align: left;*/

            margin-top: 50px;

            font-size: 12px;

            margin-left: 40px;

        }

​

        .content .bottom .articlebottom  input[type=submit]{/*這裏複習了,另外一種CSS定位的形式,對於input標籤可使用這種方式來單獨進行定位,而不須要使用class屬性來進行設置屬性*/

            width:119px;

            height: 37px;

            background-color: #51ad3b;

            margin-left: 40px;

            border: none;/*複習了去掉邊框的方式*/

        }

        .footer p{

            text-align: center;

        }

​

​

​

        /*複習一下清空默認樣式

        a{

            text-decoration:none;}

        ul,ol{

            list-style:none:}

         利用body能夠用來設置整個界面的文字信息,文字大小,文字顏色,文字樣式,能夠節約不少代碼

         */

</style>

</head>

<body>

<div class="header">

    <div class="logo" >

        <a href="https://www.163.com/" title="網易163免費郵箱"></a><a href="https://www.126.com/" title="網易126免費郵箱"></a><a href="#" title="網易yeah免費郵箱"></a>

        <!--複習了a標籤的使用,title就是指鼠標放到超連接上就會顯示的文字-->

    </div>

    <div class="links">

        <a href="http://www.baidu.com">瞭解更多</a>|<a href="#">反饋意見</a>

    </div>

</div>

<div class="content">

    <div class="top">

        <div class="left">

            <div class="right"><h3>歡迎註冊無限容量的網易郵箱!郵件地址能夠登陸使用其餘網易旗下的產品</h3></div>

        </div>

    </div>

    <div class="bottom">

        <div class="article">

            <div class="articletop">

                <ul>

                    <li>註冊字母郵箱</li><!--看到導航條就應該想到ul.li-->

                    <li>註冊手機號郵箱</li>

                    <li>註冊VIP郵箱</li>

                </ul>

            </div>

            <div class="articlebottom">

                <div class="line">

                    <span class="star">*</span><!--這裏的星號表明必填項--><span>郵箱地址</span>

                    <div>

                        <input type="text" value="建議手機號碼註冊">@

                        <select>

                            <option value="163.com">163.com</option><!--複習了選項的標籤select和Option,這裏的value是傳給瀏覽器的-->

                            <option value="126.com">126.com</option>

                            <option value="lnj.net">lnj.net</option>

                        </select>

                    </div>

                </div>

                <p>6~18個字符,可以使用字母、數字、下劃線,需以字母開頭</p>

                <div class="line">

                    <span class="star">*</span><span>密碼</span>

                    <div>

                        <input type="password">

                    </div></div>

                <p>6~16個字符,區分大小寫</p>

                <div class="line">

                    <span class="star">*</span><span>再次確認密碼</span>

                    <div>

                        <input type="password"><!--這裏複習了密碼的輸入方法-->

                    </div>

                </div>

                <p>請再次填寫密碼</p>

                <dic class="line">

                    <span class="star">*</span><span>手機號碼</span>

                    <div>

                        <input type="number">

                    </div>

                </dic>

                <p>輸入手機號</p>

                <div class="line">

                    <span class="star">*</span><span>驗證碼</span>

                    <div>

                        <input type="text" class="yanzhengma"><img src="image/yanzhengma.jpg" alt="">

                    </div>

                </div>

                <p class="service">

                    <input type="checkbox" checked="checked"><!--複習了多選框的類型爲checkbox,而且多選框是默認選中的-->

                    贊成<a href="#">《服務條款》</a><a href="#">《隱私政策》</a><a href="#">《兒童隱私政策》</a>

                </p>

                <input class="submitbutton" type="submit" value="當即註冊"><!--複習了提交按鈕的類型,以及按鈕裏面的值-->

            </div>

        </div>

        <div class="aside"></div>

    </div>

</div>

<div class="footer">

    <p><a href="#">關於網易</a> <a href="#">客戶服務 </a> <a href="#">隱私政策</a> | 網易公司版權全部 © 1997-2019</p>

    <p>數據來源:艾媒諮詢《2015-2018中國我的郵箱行業研究報告》</p>

</div>

</body>

</html>

 

3、源碼:git

D139_FrameworkeOfNeteasyInterface.htmlgithub

地址:瀏覽器

https://github.com/ruigege66/HTML_learning/blob/master/D139_FrameworkeOfNeteasyInterface.html微信

2.CSDN:https://blog.csdn.net/weixin_44630050ide

3.博客園:https://www.cnblogs.com/ruigege0000/學習

4.歡迎關注微信公衆號:傅里葉變換,我的帳號,僅用於技術交流,後臺回覆「禮包」獲取Java大數據學習視頻禮包測試

 

相關文章
相關標籤/搜索