HTML 常用語法

基本結構

<!--註解-->
<!DOCTYPE html>
<html>
    <head>
        <script></script>
        <style></style>
    </head>
    <body>
        <div></div>
    </body>
</html>

標籤(Tag)

<br>   <!--    換行   line break   -->

特殊符號

&amp;   <!--    AND(&)   ampersand   -->
&lt;    <!--    小於(<)   less-than  -->
&gt;    <!--    大於(>)   greater-than  -->
&nbsp;  <!--    空格( )  no-break space -->

Scroll to Top