first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,74 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>html练习</title>
</head>
<body>
<h1>1</h1>
<h2>1</h2>
<h3>1</h3>
<h4>1</h4>
<h5>1</h5>
<h6>1</h6>
<p>wefwefew</p>
<ul>
<li>323</li>
<li>4345</li>
</ul>
<ol>
<li>wee</li>
<li>e4r</li>
</ol>
<input type="text" placeholder="ceshi">
<img src="" alt="">
<div class="2323">23232</div>
<button>按钮</button>
<input type="submit" value="按钮">
<input type="button" value="按钮">
<iframe width="100%" frameborder="1" src="https://www.baidu.com/s?ie=UTF-8&wd=html"></iframe>
<select name="" id="">
<option value="3">23e3</option>
<option value="">23e3</option>
<option value="">23e3</option>
<option value="">23e3</option>
</select>
<pre>
package com.peoperties.peoperties.bean;
public class Dog {
private String name;
private Integer age;
@Override
public String toString() {
return "Dog{" +
"name='" + name + '\'' +
", age=" + age +
'}';
}
</pre>
</body>
</html>

View File

@@ -0,0 +1,13 @@
块级标签:会独占一行的标签 div p h1~h6
可以设置宽高,边距
行内标签:不会独占一行 a span img
不可以
可以相互转换:
display: block; inner行内 inline-block行内块标签 block