- <开始标签 属性名="值">标签体</结束标签>
-
- <单标签>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>文本相关标签</title>
- </head>
- <body>
- 正常字体
- <!-- align剧中 -->
- <h1 align="center">内容标题1</h1>
- <h2 align="right">内容标题2</h1>
- <h3>内容标题3</h1>
- <h4>内容标题4</h1>
- <h5>内容标题5</h1>
- <h6>内容标题6</h1>
- <hr>
- <p>段落标签1</p>
- <p>段落标签2</p>
- <p>段落<br>标签3</p>
- 加粗 <b>标签</b><br>
- 斜体 <i>标签</i><br>
- 下划线 <u>标签</u><br>
- 删除线 <s>标签</s><br>
- <hr>
- <h1>列表标签</h1>
- <h2>无序列表</h2>
- </body>
- </html>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>文本相关标签</title>
- </head>
- <body>
- <ol><!-- ordered list -->
- <li>java语言基础
- <ol>
- <li>变量</li>
- <li>数据类型</li>
- <li>运算符</li>
- </ol>
- </li>
- <li>javaAPI</li>
- <li>Web前端
- <ul>
- <li>html</li>
- <li>CSS</li>
- <li>javaScript</li>
- </ul>
- </li>
- </ol>
- </body>
- </html>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>图片标签</title>
- </head>
- <body>
- <!-- 同级目录 alt当图片不能正常显示时显示的文本 -->
- <img src="a.jpg" alt="这是两个猫耳少女" width="400" height="200">
- <!-- 上级目录 -->
- <img src="../b.jpg" alt="这是个白毛萝莉" width="400" height="200">
- <!-- 下级目录 -->
- <img src="img/c.jpg" alt="两个小萝莉" width="400" height="200">
- <!-- 站外资源路径 -->
- <img src="https://cdn.tmooc.cn/bsfile//courseImg///5f791c0985cc4a67a5c4dca6627155b0.jpg" alt="" width="400" height="200">
- </body>
- </html>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>超链接</title>
- </head>
- <body>
- <a href="http://www.baidu.com">超链接1百度</a><br>
- <a href="02简历练习.html">超链接2简历</a><br>
- <a href="a.jpg">超链接3图片</a><br>
-
- <a href="http://www.jd.com"><img src="a.jpg" alt="" width="400"></a>
- </body>
- </html>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>表格标签</title>
- </head>
- <body>
- <table border="1" bgcolor="aqua" width="500" height="200">
- <tr><!-- tr表示行 td表示列 -->
- <!-- colspan 跨列 -->
- <td colspan="2" align="center">1-1</td>
-
- <td rowspan="2" align="center">1-3</td>
- <td rowspan="3" align="center">1-4</td>
- </tr>
- <tr>
- <td>2-1</td>
- <td>2-2</td>
-
-
- </tr>
- <tr>
- <td colspan="3" align="center">3-1</td>
-
-
- </tr>
- <tr>
- <td colspan="4" align="center">4-1</td>
-
- </tr>
- </table>
-
- <h1>跨行\跨列练习</h1>
- <table border="1" bgcolor="aqua" width="200" height="200">
- <tr>
- <td colspan="2" align="center">1-1</td>
-
- <td rowspan="2" align="center">1-3</td>
- </tr>
- <tr>
- <td rowspan="2" align="center">2-1</td>
- <td>2-2</td>
-
- </tr>
- <tr>
-
- <td colspan="2" align="center">3-2</td>
-
- </tr>
- </table>
- <h1>购物车</h1>
- <table border="1">
- <!-- caption表格标题 -->
- <caption>购物车</caption>
- <tr>
- <!-- th 表头 -->
- <th>编号</th>
- <th>商品名</th>
- <th>单价</th>
- </tr>
- <tr>
- <td>1</td>
- <td>华为显示器</td>
- <td>2350</td>
- </tr>
- <tr>
- <td>2</td>
- <td>小米洗衣机</td>
- <td>1350</td>
- </tr>
- </table>
- </body>
- </html>
- <!--action设置提交地址-->
-
- <form action="http://www.baidu.com">
-
- <!--maxlength最大字符长度 placeholder占位文本 value设置默认值 readonly只读-->
-
- 用户名:<input type="text" name="username" placeholder="请输入用户名"
-
- maxlength="5" value="abc" readonly><br>
-
- 密码:<input type="password" name="password" placeholder="请输入密码"><br>
-
- <!--单选框必须添加value 设置提交的值 否则提交on
- checked 设置默认选中 -->
-
- 性别:<input type="radio" name="gender" value="m" id="r1">
-
- <label for="r1">男</label>
-
- <input type="radio" name="gender" checked value="w" id="r2">
-
- <label for="r2">女</label><br>
-
- 兴趣爱好:<input type="checkbox" name="hobby" value="cy">抽烟
-
- <input type="checkbox" name="hobby" checked value="hj">喝酒
-
- <input type="checkbox" name="hobby" value="tt">烫头<br>
-
- 生日:<input type="date" name="birthday"><br>
-
- 靓照:<input type="file" name="pic"><br>
-
- 所在地:
-
- <select name="city">
-
- <!--value用来设置提交的内容, 如果不写value则提交标签体内的内容-->
-
- <option value="bj">北京</option>
-
- <option value="sh" selected>上海</option>
-
- <option>广州</option>
-
- </select><br>
-
- <input type="reset" value="重置按钮">
-
- <input type="submit" value="注册">
-
- <input type="button" value="自定义按钮">
-
- </form>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>分区标签</title>
- </head>
- <body>
- <!-- div独立占据一行 -->
- <div>div1</div>
- <div>div2</div>
- <div>div3</div>
- <!-- span共同占据一行 -->
- <span>span1</span>
- <span>span2</span>
- <span>span3</span>
- <h1>通过div划分三大区域</h1>
- <div>头</div>
- <div>体</div>
- <div>脚</div>
- <h1>通过html5 新增标签 划分三大区域</h1>
- <header>头</header>
- <main>主体</main>
- <footer>脚</footer>
- </body>
- </html>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>CSS引入方式</title>
- <!-- html注释 -->
- <style type="text/css">
- /* css注释 */
- h2{
- color: bisque;
- }
- </style>
- <!-- css外部引入样式 -->
- <!-- rel 关系(引入的是一个样式文件) -->
- <!-- type 该文件是什么类型的 -->
- <!-- href 引入文件的路径 -->
- <link rel="stylesheet" type="text/css" href="my.css"/>
- </head>
- <body>
- <h1 style="color: aquamarine;">内连样式1</h1>
- <h1 style="color: aquamarine;">内连样式2</h1>
- <h2>内部样式1</h2>
- <h2>内部样式2</h2>
- <h3>外部样式1</h3>
- <h3>外部样式2</h3>
- </body>
- </html>
my.css
- h3{
- color: chartreuse;
- }
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>选择器</title>
- <style type="text/css">
- /* id选择器 */
- #banana{
- color: yellow;
- }
- /* 类选择器 */
- .c1{
- color: #7FFF00;
- }
- /* 分组选择器 */
- #banana,.c1{
- background-color: black;
- }
- /* 属性选择器 */
- input[type='text']{
- color: orange;
- }
- *{
- border: 1px solid red;
- }
- </style>
- </head>
- <body>
- <h3 id="banana">香蕉</h3>
- <h3>苹果</h3>
- <h3 class="c1">葡萄</h3>
- <p>冰箱</p>
- <p>洗衣机</p>
- <p class="c1">电视机</p>
- <input type="text" name="" id="" value="" /><br>
- <input type="password" name="" id="" value="" />
- </body>
- </html>
通过内部样式实现以下效果
答案:
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>小练习</title>
- <style type="text/css">
- *{
- border: 1px solid red;
- }
- #zxy{
- color: #7FFF00;
- }
- .c1{
- color: blue;
- }
- h1,h2{
- background-color: yellow;
- }
- input[type='password']{
- background-color: #FF0000;
- }
- </style>
- </head>
- <body>
- <p id="zxy">张学友</p>
- <p class="c1">刘德华</p>
- <p>郭富城</p>
- <h1 class="c1">悟空</h1>
- <h1>八戒</h1>
- <h2>刘备</h2>
- <input type="text">
- <input type="password"/>
- </body>
- </html>