zoukankan      html  css  js  c++  java
  • 静态网页设计元素

    eg:1

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>菜鸟教程(runoob.com)</title>
    </head>
    <body>
    <h2 align=center>唐诗欣赏</h2>
    <hr width="100%" size="1",color="blue">
    <p align="center" ><b><font size="3">静夜思</font></b></p>
    <p align="center" >
    <font size="2">李白</font><br/><br/>

    <b>床前明月光,<br/> 疑是地上霜。<br/>
    举头望明月,<br/> 低头思故乡。<br/>
    </b>
    </p>
    <hr width="100%" size="1" color="blue">

    <b>【简析】</b>这是写。。<br>
    <br><br><br><br><br>

    <font size="4">版权&copy;:违者必究</font>
    <address>E-mail:1214tian@sina.com</address>
    </body>
    </html>

    eg2

    <!--列表标签--->
    <ul type="cicle">
    <li>***********</li>
    <li>***********</li>
    </ul>
    <ol type="I">
    <li>EEEEEEEEEEEE</li>
    <li>EEEEEEEEEEEE</li>
    <li>EEEEEEEEEEEE</li>
    </ol>
    <!---超链接----->
    <a href="www.baidu.com">链接百度</a>

    <!---图片链接----->
    <a href="www.baidu.com"><img src="url" width="" height="" alt=""></a>

    <!----定时刷新---------->

    <meta  http-equiv="refresh" content="1" charset="utf-8"> 

    <!----定时跳转---------->

    <meta  http-equiv="refresh" content="1; url=http:www.baidu.com"  charset="utf-8"> 

    <!---------表格-------->

    ,<table width="100%" border="1" align="center">

    <caption>标题</caption>

    <tr><th colspan="3">期中成绩表</th></tr>

    <tr><th>姓名</th> <th>语文</th><th>数学</th></tr>

    <tr> <td>张三</td><td>100</td><td>90</td></tr>

    </table>

     

  • 相关阅读:
    eureka 源码
    注册中心eureka
    自己的spring boot starter
    spring boot基本认识
    我以为我对Kafka很了解,直到我看了此文章
    Spring 中的 18 个注解,你会几个?
    定时任务之crontab命令
    Spring中@Autowired、@Resource和@Inject注解的使用和区别
    Lombok介绍、使用方法和总结
    Mybatis JdbcType与Oracle、MySql数据类型对
  • 原文地址:https://www.cnblogs.com/xinxianquan/p/7921333.html
Copyright © 2011-2022 走看看