HTML标签(一)

 1 <html>
 2     <head>
 3         <title>这是标题</title>
 4     </head>
 5     <body bgcolor='pink'> <!-- body可以设定背景等属性值 -->
 6         <h1 align="center">html学习</h1>
 7         <hr size=3 width=140 color="green">
 8         <br>
 9         <hr>
10         <p align="center">
11             <font size=5>
12             <b>静夜思</b>
13             <i align="center">唐·李白</i>
14             <br>
15             <u>
16             床前明月光,疑是地上霜。
17             <br>
18             举头望明月,低头思故乡。
19             </u>
20             </font>
21             <hr>
22         </p>
23         <p>
24             <marquee direction="right">富强 民主 文明 和谐</marquee><!-- 从左向右移动 -->
25             <marquee direction="left">爱国 敬业 诚信 友善</marquee><!-- 从右向左移动 -->
26         </p>
27         <p align="center">
28             <marquee direction="alternate" width=400 height=200 bgcolor=red>中华民族伟大复兴</marquee>
29         </p>
30     </body>
31 </html>

展示下效果:(下面的字是移动的)

 

posted @ 2019-03-08 16:22  yocichen  阅读(104)  评论(0编辑  收藏  举报