16-11-07

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了16-11-07相关的知识,希望对你有一定的参考价值。

  通过今天对php的初步涉入,学会了简单网页的建设与信息的编码编辑。

  首先了解了涉及到前台开发的html、Css、js特效等,以及后台开发的PHP、.net、Python、node js、sql serve(微软)、oracle(谷歌)。个人可以在Windows7或Linux系统环境下通过mysql、PHP和Apache搭建服务器。

  然后还有一些简单的概念。

  HTTP超文本传输协议(全称Hypter Text Transfer Protocol)

     HTML超文本标记语言(全称Hyper Text Marked Language)

  简单的网页创建方法首先需要创建一个html格式的文本文档,然后在sublime中进行操作




<html> <!-- 开始标记 -->

    <head> <!-- 标题标记 -->

        <title>网页标题</title>

        <style>

            div

                /*宽度*/

                width: 200px;

                /*高度*/

                height: 200px;

                 /*背景色*/

                background-color: #FF0000;

                /*漂浮*/

                float: left/right

                /*清除浮动*/

                .clear{width: 0px;

                    height: 0px;

                    clear: both;

        </style>

    </head>

    <body>

    

        <div></div>

        <div id=“second”</div>

        <div class=“clear”></div>

        <div id=“third”></div>

        <div id=“fourth”></div>

    </body>

    </html>

  这样就可以编辑出简单的网页代码,如单独编辑方块颜色可以对其id逐一进行编辑。



    

 







  

  

以上是关于16-11-07的主要内容,如果未能解决你的问题,请参考以下文章