|
发表于 2018-10-17 23:56:36
|
显示全部楼层
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>Page Title</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <style type="text/css">
- h1 {
- font-family: KaiTi, '楷体';
- color: #abc;
- /* padding:10px 5px 15px 20px; */
- padding: 9px;
- border-bottom: 2px solid rgba(0, 0, 0, .15);
- font-weight: bold;
- text-indent: -9999px;
- background: url(./26.png) no-repeat 0 50%;
- height: 100%;
- background-size: 175px 60px;
- }
-
- p {
- text-indent: 2em;
- border-left: 3px solid #27ae59;
- background: #ecf0f1;
- }
- </style>
- </head>
- <body>
- <h1>鱼C工作室<img src="./26.png"></h1>
- <p>
- 小甲鱼(本名 李佳宇),鱼C工作室创始人,七年编程教学工作经验.
- <br>已发布过《零基础入门学习Python》、《数据结构和算法》、《带你学C带你飞》、《Windows程序设计》、《解密系列》等系列视频教程。
- <br>视频在网易云课堂、百度传课、51CTO等网站发布后,广受网友好评,多次被网页及相关专题推荐,累计学习人数达30万。
- </p>
- </body>
- </html>
复制代码 |
|