zoukankan      html  css  js  c++  java
  • 什么也不会系列之HTml初级基础

    HTML标题标签有<h1>~</h6>

    <html>
    <head>
        <title>第一个网站</title>
    </head>
    <body>
    <h1>This is heading 1</h1>
    <h2>This is heading 1</h2>
    <h3>This is heading 1</h3>
    <h4>This is heading 1</h4>
    <h5>This is heading 1</h5>
    <h6>This is heading 1</h6>
    </body> </html>

    HTML链接

    <html>
    <head>
        <title>第一个网页</title>
    </head>
    <body>
    <a href="#" >链接显示</a>
    <a name=" ">接受</a>
    </body>
    
    </html>    

       HTML的换行标签

    <html>
    <head>
        <title>第一个网站</title>
    </head>
    <body>
    这是一段文字<br/>    <!--后边的换到下一行-->
    下一行的文字 </body> </html>

      HTML范围标签

    <html>
    <head>
        <title>第一个网站</title>
    </head>
    <body>
     <span>
    又来修改一个范围内的属性本身没有任何作业
    </span> </body> </html>

      HTML水平线标签

    <html>
    <head>
        <title>第一个网站</title>
    </head>
    <body>
    <hr/>
    </body>
    </html>

    HTML段落标签

    <html>
    <head>
        <title>第一个网站</title>
    </head>
    <body>
    <p>这是段落</p>
    <p>这是段落</p>
    <p>这是段落</p>

    </body> </html>
  • 相关阅读:
    网络爬虫(抓取)正则表达式 (多线程协作)
    Asp.net 主题
    Asp.net 菜单控件
    CSS 布局Float 【4】
    CSS 布局Float 【3】
    CSS 布局Float 【2】
    CSS 布局Float 【1】
    CSS 布局Float 【0】
    Asp.Net 母版页
    Sql Server 远程过程调用失败
  • 原文地址:https://www.cnblogs.com/n6666/p/7435762.html
Copyright © 2011-2022 走看看