|
发表于 2018-7-12 17:00:37
|
显示全部楼层
交作业:
- <!DOCTYPE HTML>
- <!-- 0004页面美化,learned from 不二如是 -->
- <html>
- <head>
- <meat charset="utf-8">
- <title>welcome to the world of HTML</title>
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <meta name="keywords" content="STmove,test">
- <meta name="description" content="学习测试">
- <meta name="author" content="STmove">
-
- <style type="text/css">
- html
- {
- height:100%;
- }
- body
- {
- background:url("320980.jpg") center center;
- background-size:cover;
- }
- h1
- {
- color:#0bf;
- }
- p
- {
- color:#afe;
- }
- a
- {
- color:#fff;
- }
- </style>
- </head>
- <body>
- <h1>我爱鱼兮</h1>
- <p>www.FishC.org-让编程改变世界</p>
- <a href="www.FishC.org" target="_blank">JOIN US</a>
- </body>
- </html>
复制代码 |
|