Browse Source

firstcommit

fengchuanyu 9 months ago
parent
commit
518b3384b2
3 changed files with 44 additions and 0 deletions
  1. 11 0
      1_html/1_helloworld.html
  2. 33 0
      1_html/2_标签.html
  3. BIN
      1_html/logo.png

+ 11 - 0
1_html/1_helloworld.html

@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>爱扣钉</title>
+</head>
+<body>
+    hello world!
+</body>
+</html>

+ 33 - 0
1_html/2_标签.html

@@ -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>

BIN
1_html/logo.png