簡單的網頁製作

weixin_34236869發表於2017-07-14

超級文字標記語言文件製作不是很複雜,但功能強大,支援不同資料格式的 檔案鑲入,這也是全球資訊網( WWW)盛行的原因之一,其主要特點如下:

    1、簡易性:超級文字標記語言 版本升級採用 超集方式,從而更加靈活方便。
    2、可擴充套件性:超級文字標記語言的廣泛應用帶來了加強功能,增加 識別符號等要求,超級文字標記語言採取子類元素的方式,為系統擴充套件帶來保證。
    3、平臺無關性:雖然 個人計算機大行其道,但使用 MAC等其他機器的大有人在,超級文字標記語言可以使用在廣泛的平臺上,這也是 全球資訊網( WWW)盛行的另一個原因。
    4、通用性:另外, HTML是網路的通用語言,一種簡單、通用的全置標記語言。它允許網頁製作人建立文字與圖片相結合的複雜頁面,這些頁面可以被網上任何其他人瀏覽到,無論使用的是什麼型別的電腦或瀏覽器。
HBuilder編輯
        <table border="2" width="100%" align="center">
            <tr>
                <td>
                    ![](img/01.jpg)
                </td>
            </tr>
            <tr>
                <td>
                    <table width="100%" bgcolor="gray">
                        <tr>
                            <td><a href="04table.html">免費送</a></td>
                            <td>車</td>
                            <td>電腦</td>
                            <td>伺服器</td>
                        </tr>
                    </table>
                </td>
            </tr>
        </table>
        <!--中-->
        <table border="0" width="100%">
            <tr>
                <td width="100" bgcolor="aqua">
                    <table width="100%">
                        <tr><td>蘭博基尼</td></tr>
                        <tr><td>保時捷</td></tr>
                        <tr><td>法拉利</td></tr>
                        <tr><td>邁凱倫</td></tr>
                    </table>
                </td>
                <td>
                    <table width="100%">
                        <tr>
                            <td>
                                <a href="deta.html">
                                ![](img/02.jpg)
                                </a>
                            </td>
                            <td>
                                ![](img/03.jpg)
                            </td>
                        </tr>
                        <tr>
                            <td>
                                ![](img/04.jpg)
                            </td>
                            <td>
                                ![](img/05.jpg)
                            </td>
                        </tr>
                    </table>
                </td>
            </tr>
        </table>
        <!--底部-->
        <table border="2">
            <tr><td align="center" height="48">
                <a href="tarena:call/15200035947">聯絡我們</a>
            </td>
            </tr>

        </table>
手機呼叫網頁
        android:layout_width="match_parent"
        android:id="@+id/webView"
        android:layout_height="match_parent"></WebView
webView = (WebView) findViewById(R.id.webView);
        webView.clearCache(true);
        webView.loadUrl("http://172.60.25.102:8020/html4/07table.html");

相關文章