|
@@ -0,0 +1,33 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="en">
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
+ <title>Document</title>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+ <span>hello world</span>
|
|
|
+ <div>hello</div>
|
|
|
+ <!-- 标题标签 h1-h6 -->
|
|
|
+ <h1>hello</h1>
|
|
|
+ <h2>hello</h2>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- <h3>hello!</h3> -->
|
|
|
+ <!-- ul(无序列表)实现列表 配合li -->
|
|
|
+ <ul>
|
|
|
+ <li>张三</li>
|
|
|
+ <li>李四</li>
|
|
|
+ </ul>
|
|
|
+
|
|
|
+ <ol>
|
|
|
+ <li>王五</li>
|
|
|
+ <li>赵六</li>
|
|
|
+ </ol>
|
|
|
+
|
|
|
+ <img src="https://oa.koobietech.com:7100/static/home/images/login_logo.png" alt="图片">
|
|
|
+ <img src="./logo.png">
|
|
|
+
|
|
|
+ <a href="https://www.baidu.com">百度</a>
|
|
|
+</body>
|
|
|
+</html>
|