123456789101112131415161718192021222324252627 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- span{
- font-style: italic;
- /* border:1px solid red; */
- border-width: 1px;
- border-style: solid;
- border-color: red;
- font-family: "Arial, sans-serif";
- }
- i{
- /* display: none; */
- }
- </style>
- </head>
- <body>
- <i>hello world 你好世界</i>
- <span>hello world 你好世界</span>
- <hr>
- <img src="./image/logo.png" width="200px" height="400px" alt="">
- </body>
- </html>
|