其他分享
首页 > 其他分享> > 软件测试体系学习及构建(7)-HTML之文本格式化、链接、头部、CSS

软件测试体系学习及构建(7)-HTML之文本格式化、链接、头部、CSS

作者:互联网

目录

1 文本格式化

1.1 文本格式化标签

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

1.2 举例

<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <title>文本格式化标签</title>
</head>

<body>
    <b>【这是规则】</b><br>

    这是<b> 定义粗体文本</b> 的标签!<br>
    这是<em> 定义着重文字</em> 的标签!<br>
    这是<i> 定义斜体字</i> 的标签!<br>
    这是<small> 定义小号字</small> 的标签!<br>
    这是<strong> 定义加重语气</strong> 的标签!<br>
    这是<sub> 定义下标字</sub> 的标签!<br>
    这是<sup> 定义上标字</sup> 的标签!<br>
    这是<ins> 定义插入字</ins> 的标签!<br>
    这是<del> 定义删除字</del> 的标签!<br>

    <hr>
    <p><b>【这是举例】</b></p>
    <p>曾经有一份真挚的爱情<b>摆在我的面前</b></p>
    <p>我没有好好珍惜 <i>等到失去时</i> 才感到后悔</p>
    <p>如果老天能够再<sup>给我一次机会</sup></p>
    <p>我会对那个女孩说 <strong>我爱你</strong></p>
    <p>如果非要在这个爱上<sub>加个期限的话</sub></p>
    <p>我希望是 <del>一万年</del></p>
</body>

</html>

在这里插入图片描述

2 链接

2.1 链接标签

2.2 链接语法

<a href="url">链接文本</a>

2.3 链接属性

属性 说明
<href> 链接地址
<target > 定义被链接的文档在何处显示
<id> 创建一个 HTML 文档书签

2.4 举例

<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <title>链接学习</title>
</head>

<body>
    <p><b>在当前标签中打开网页</b></p>
    <a href="https://blog.csdn.net/NoamaNelson">NoamaNelson的CSND博客</a><br>
    <a href="https://www.cnblogs.com/noamanelson">NoamaNelson的博客园</a><br>
    <hr>
    <p><b>在新的窗口中打开网页</b></p>
    <a href="https://blog.csdn.net/NoamaNelson" target="_blank">NoamaNelson的CSND博客</a><br>
    <a href="https://www.cnblogs.com/noamanelson" target="_blank">NoamaNelson的博客园</a><br>
    <hr>
    <p><b>id属性</b></p>
    <p><a id="NoamaNelson">NoamaNelson的博客有:</a></p>
    <a href="https://blog.csdn.net/NoamaNelson#NoamaNelson">CSND博客</a><br>
    <a href="https://www.cnblogs.com/noamanelson#NoamaNelson">博客园博客</a><br>
    <hr>
    <p>创建图片链接(有边框):<br>
        <a href="https://blog.csdn.net/NoamaNelson#NoamaNelson">
            <img border="10" src="F:\html_study\img\1.jpg" alt="NoamaNelson的CSND博客" width="64" height="64"></img></a>
    </p>
    <p>创建图片链接(无边框):<br>
        <a href="https://blog.csdn.net/NoamaNelson#NoamaNelson">
            <img border="0" src="F:\html_study\img\1.jpg" alt="NoamaNelson的CSND博客" width="64" height="64"></img></a>
    </p>
</body>
</html>

在这里插入图片描述

3 头部

3.1 head元素

<title>, <style>, <meta>, <link>, <script>, <noscript> ,<base>

3.2 title元素

①浏览器工具栏的标题;
②收藏夹中的标题;
③搜索引擎结果页面的标题。

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>标题学习</title>
    </head>

    <body>
        什么都没有!!!
    </body>
</html>

在这里插入图片描述

3.3 base元素

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>标题学习</title>
    </head>

    <body>
        <!-- base元素 -->
        <base href="https://blog.csdn.net/NoamaNelson#NoamaNelson" target="_blank">
        <a href="#base">CSDN博客</a>
    </body>
</html>

在这里插入图片描述

3.4 style元素

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>标题学习</title>

        <!-- style -->
        <style type="text/css">
        body {background-color: coral;}
        a {color: darkblue;}
        </style>

    </head>

    <body>
        <!-- base元素 -->
        <base href="https://blog.csdn.net/NoamaNelson#NoamaNelson" target="_blank">
        <a href="#base"><b>CSDN博客</b></a>
    </body>
</html>

在这里插入图片描述

/* my.css */

body {background-color: rgb(170, 80, 255);}
a {color: darkblue;}
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>头部学习</title>

        <!-- style -->
        <!-- <style type="text/css">
        body {background-color: coral;}
        a {color: darkblue;} -->
        <!-- </style> -->

        <link rel="stylesheet" type="text/css" href="F:\html_study\css\my.css">

    </head>

    <body>
        <!-- base元素 -->
        <base href="https://blog.csdn.net/NoamaNelson#NoamaNelson" target="_blank">
        <a href="#base"><b>CSDN博客</b></a>
    </body>
</html>

在这里插入图片描述

3.6 meta元素

<!DOCTYPE html>
<html>
    <head>
        <!-- meta元素 -->
        <!-- meta可以定义网页作者、编码、页面刷新、等等 -->
        <meta charset="utf-8" name="author" content="NoamaNelson" http-equiv="refresh" content="3">
        <title>头部学习</title>

        <!-- style -->
        <!-- <style type="text/css">
        body {background-color: coral;}
        a {color: darkblue;} -->
        <!-- </style> -->

        <link rel="stylesheet" type="text/css" href="F:\html_study\css\my.css">



    </head>

    <body>
        <!-- base元素 -->
        <base href="https://blog.csdn.net/NoamaNelson#NoamaNelson" target="_blank">
        <a href="#base"><b>CSDN博客</b></a>
    </body>
</html>

3.7 script元素

4 CSS

① 内联样式- 在HTML元素中使用"style" 属性;
②内部样式表 -在HTML文档头部 <head> 区域使用<style> 元素 来包含CSS;
③外部引用 - 使用外部 CSS 文件;

4.1 内联样式

<!DOCTYPE html>
<html>

<head>

    <meta charset="utf-8">
    <title>CSS简单了解</title>
</head>


<body>
    <!-- 内联样式-背景色-居中-->
    <p style="background-color: darkblue;text-align:center;">人生自古谁无死,</p>
    <p style="background-color: rgb(28, 139, 0);text-align:center;">留取丹心照汗青。</p>
    <hr>
    <!-- 内联样式-字体颜色-居中-->
    <p style="font-family: 'Courier New';color: red;text-align:center;">天生我材必有用,</p>
    <p style="font-family: 'Segoe UI';color: tomato;text-align:center;">千金散尽还复来。</p>
    <hr>
    <!-- 内联样式-字体大小-居中-->
    <p style="font-size: larger;text-align:center;">人生得意须尽欢,</p>
    <p style="font-size: larger;text-align:center;">莫使金樽空对月。</p>


</body>
</html>

在这里插入图片描述

4.2 内部样式表

<!DOCTYPE html>
<html>

<head>

    <meta charset="utf-8">
    <title>CSS简单了解</title>
    <style>
        body {background-color: yellow;}
        p {text-align: center;font-family: 'Courier New', Courier, monospace; color:blue; font-weight: bold;}
    </style>
</head>


<body>
    <!-- 内联样式-背景色-居中-->
    <!-- <p style="background-color: darkblue;text-align:center;">人生自古谁无死,</p>
    <p style="background-color: rgb(28, 139, 0);text-align:center;">留取丹心照汗青。</p> -->
    <hr>
    <!-- 内联样式-字体颜色-居中-->
    <!-- <p style="font-family: 'Courier New';color: red;text-align:center;">天生我材必有用,</p>
    <p style="font-family: 'Segoe UI';color: tomato;text-align:center;">千金散尽还复来。</p> -->
    <hr>
    <!-- 内联样式-字体大小-居中-->
    <!-- <p style="font-size: larger;text-align:center;">人生得意须尽欢,</p>
    <p style="font-size: larger;text-align:center;">莫使金樽空对月。</p> -->

    <p>登鹳雀楼</p>
    <p>昔人已乘黄鹤去,<br>此地空余黄鹤楼。<br>黄鹤一去不复返,<br>白云千载空悠悠。<br>晴川历历汉阳树,<br>芳草萋萋鹦鹉洲。<br>日暮乡关何处是?<br>烟波江上使人愁。</p>

</body>
</html>

在这里插入图片描述

4.3 外部样式表

/* study_css.css*/

body {background-color:deeppink;}
p {text-align: center;font-family: 'Courier New', Courier, monospace; color:blue; font-weight: bold;}
<!DOCTYPE html>
<html>

<head>

    <meta charset="utf-8">
    <title>CSS简单了解</title>
    <link rel="stylesheet" type="text/css" href="F:\html_study\css\study_css.css">
</head>


<body>

    <p>登高</p>
    <p>风急天高猿啸哀,<br>渚清沙白鸟飞回。<br>无边落木萧萧下,<br>不尽长江滚滚来。<br>万里悲秋常作客,<br>百年多病独登台。<br>艰难苦恨繁霜鬓,<br>潦倒新停浊酒杯。</p>

</body>
</html>

在这里插入图片描述


『全栈测试技术,分享,共勉,共进,提升』


标签:定义,color,标签,元素,文本格式,HTML,链接,CSS,软件测试
来源: https://www.cnblogs.com/noamanelson/p/15349382.html