HTML

作者: Jasonyang5201 | 来源:发表于2019-04-07 21:59 被阅读0次

    HTML概述

    HTML:Hyper Text Markup language 超文本标记语言
    超文本:比普通文本功能更加强大,可以添加各种样式
    标记语言:通过一组标签,来对内容进行描述.<关键字>

    <h1>清明</h1>
     <b> <i>--杜牧</i></b><br/>
    <p>清明时节雨纷纷,</p>
    <p>路上行人欲断魂。</p>
    <p>借问酒家何处有,</p>
    <p>牧童遥指杏花村。</p>
    

    HTML语法规范

    <!DOCTYPE html>
    <!--
                1.上面一个是文档声明
                2.根标签是  html
                3.html文件主要包含两部分.头部分和体部分
                      头部分: 主要是用来放置一些页面信息
                      体部分:主要来放置我们的HTML页面内容
                 4.通过标签来对内容进行描述,标签通常都是由开始标签和结束标签组成
                5.标签不区分大小写
    -->
    <html>
        <head>
            <!--meta 网站配置信息-->
            <!--指定浏览器打开页面的编码方式-->
          <meta charset="utf-8"  />
          <!--指定网站标题-->
          <title>入门案例</title>
          </head>
          <body>
                        Hellow world
          </body>
    </html>
    

    标签

    <!DOCTYPE html>
    <html>
              <head>
                         <meta charset="utf-8"  />
                          <title>demo1</title>
        </head>
    <body>
            <!--
                  h1标题:
                            h后面数字的取值范围:1~6
      -->
                <h1>标题1</h1>
                <h2>标题2</h2>
                <h3>标题3</h3>
                <h4>标题4</h4>
                <h5>标题5</h5>
                <h6>标题6</h6>
    </body>
    
    </html> 
    

    表格以及输入框属性

    
    <form action="#" method=post>
             <table  width="60%" >
                <tr>
                    <td align="right"><p>注册邮箱:</p></td>
                    <td >
                        <input type="text" name="email" />
                    </td>
                </tr>
                <tr>
                    <td align="right"><p>创建密码:</p></td>
                    <td><input type="password" name="password" /></td>
                </tr>
                <tr>
                    <td align="right"><p> 真实姓名:</p></td>
                    <td><input type="username" name="username" /></td>
                </tr>
                <tr>
                    <td align="right"><p>性别:</p></td>
                    <td><input type="radio" name="sex" value="男" checked="checked">男</input>
                        <input type="radio" name="sex" value="女" >女</input>
                    </td>
                </tr>
    <tr>
                         <td align="right">爱好:</td>
                        <td>
                            <input type="checkbox" name="hobby" value="篮球" checked="checked" />篮球
                            <input type="checkbox" name="hobby" value="足球 " />足球
                            <input type="checkbox" name="hobby" value="乒乓球 " />乒乓球
                            <input type="checkbox" name="hobby" value="羽毛球 " />羽毛球
                        </td>
                </tr>
                <tr>
                    <td align="right"><p>生日:</p></td>
                    <td>
                        <select name="year">
                            <option value="1990">1990</option>
                            <option value="1991" selected="selected">1991</option>
                            <option value="1992">1992</option>
                        </select> 年
                    <select name="month">
                        <option value="12">12</option>
                        <option value="11">11</option>
                        <option value="10"selected="selected">10</option>
                    </select>月
                    <select name="day">
                        <option value="31">31</option>
                        <option value="30" selected="selected">30</option>
                        <option value="29">29</option>
                    </select>日
                    </td>
                </tr>
                <tr>
                    <td align="right"><p>我现在:</p></td>
                    <td>
                        <select name="doing">
                            <option value="正在上学">正在上学</option>
                            <option value="已毕业">已毕业</option>
                        </select>
                    </td>
                </tr>
                <tr>
                        <td class="me">问题详细描述</td>
                       <td><textarea cols="45" rows="5" name="detail" ></textarea>*必填                                              </td>
                    </tr>
            </table>
            </form>
    
    

    文本格式化标签

    <b>     定义粗体文本。
    <big>     定义大号字。
    <em>     定义着重文字。
    <i>     定义斜体字。
    <small>     定义小号字。
    <strong>     定义加重语气。
    <sub>     定义下标字。
    <sup>     定义上标字。
    <ins>     定义插入字。
    <del>     定义删除字。
    

    html框架标签

    1.框架标签不能和body同时出现
    2.frameset: border去除框架标签的框 ,示例:border="0"
    border="10px" bordercolor="yellow"
    3.frame框大小不变:两种情况:
    第一种:border ="0"
    第二种: noresize="noresize" 不改变大小
    备注:scrolling是否显示滚动条
    yes 显示
    no 不显示
    auto 如果内容高度超过屏幕高度直接显示滚动,
    4. frame 是框,内容使用src来填充,
    定位显示到指定位置: 使用name属性
    例如:
    点击left.html的标签跳转内容显示在right.html
    1.给right.html的frame添加name属性,方便定位。
    2.在left.html中使用target目标定位,根据name名查找

    <frameset rows="200,*" border="10px" bordercolor="yellow">
            <frame src="top.html" scrolling="yes" noresize="noresize" />
            <frameset cols="200,*">
                <frame src="left.html" scrolling="yes" noresize="noresize" />
                <frame src="right.html" name="content" scrolling="yes" />
            </frameset>
        </frameset>
    

    其他标签

     <!--该网页的关键字-->
            <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
            <!--该网页的描述-->
            <meta http-equiv="description" content="this is my page">
             <!--该网页的编码-->
            <meta http-equiv="content-type" content="text/html; charset=UTF-8">
            <!-- href:引入css文件的地址-->
            <link rel="stylesheet" type="text/css" href="./styles.css">
            <!--src:js的文件地址-->
            <script type="text/javascript" src=""></script>
    
    

    相关文章

      网友评论

          本文标题:HTML

          本文链接:https://www.haomeiwen.com/subject/moibbqtx.html