首页 > 代码库 > 2016.11.25

2016.11.25

第二天,干巴爹咯

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-cn">
 3 <head>
 4     <title>title</title>
 5     <meta http-equiv = "content-Type" content = "text/html;charset = UTF-8"/>
 6     <meta http-equiv = "refresh" content = "5"/>
 7 <!--<meta http-equiv = "refresh" content = "5 ;Noname3.html"/>-->    
 8     <link rel = "icon" href = "04dinghuisi.jpg"/>
 9     <style>
10         body{
11             background:linear-gradient(90deg,yellow,red);
12         }
13         #jiang{
14             padding:6px 16px;
15             border:1px solid #446d88;
16             background:#58a linear-gradient(#77a0bb,#58a);
17             border-radius:4px;
18             box-shadow:0 1px 5px #335166;
19             font-size:20px;
20             line-height:30px;
21         }
22     </style>
23 </head>
24 <body >
25 <!--
26     marquee标记
27     direction:up down left right
28     behavior:slip alternate scroll
29     bgColor:
30     scrollAmount:
31     width:
32     height:
33 -->
34 <marquee direction = "up" behavior = "scroll">
35     啦啦啦啦啦
36 </marquee>
37 
38 <!--空链接-->
39 <a href = "#">空链接1</a>
40 <a href = "javascript:void(0)">空链接2</a>
41 <!--锚点-->
42 <a id = "锚点名"></a>
43 <a href = "#锚点名">锚点名</a>
44 <!--图片标记-->
45 <img src = "04dinghuisi.jpg" width = "200px" alt = "图片" title = "title"/>
46 
47 <!--Browser/server结构-->
48 
49 <ol type = "a" start = "5">
50     <li></li>
51     <li></li>
52     <li></li>
53     <li></li>
54 
55 </ol>
56 <input type = "button" id = "jiang" value = "姜姜"></input>
57 </body>
58 </html>

 

2016.11.25