74 lines
1.3 KiB
HTML
74 lines
1.3 KiB
HTML
<!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> |