58 lines
948 B
HTML
58 lines
948 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>css 学习</title>
|
|
<link rel="stylesheet" href="index.css">
|
|
</head>
|
|
<body>
|
|
|
|
|
|
|
|
<p class="one">测试1</p>
|
|
<p class="two">测试2</p>
|
|
|
|
<h2>标题2</h2>
|
|
|
|
<h1>标题1-1</h1>
|
|
|
|
<div class="main">
|
|
<span>span11</span>
|
|
<h1>标题1-2
|
|
<a href="">
|
|
<span>span</span>
|
|
</a>
|
|
</h1>
|
|
</div>
|
|
|
|
|
|
<div class="mouse">测试鼠标放上</div>
|
|
|
|
<input type="text" class="name">
|
|
|
|
|
|
<ul>
|
|
<li>1</li>
|
|
<li>2</li>
|
|
<li>3</li>
|
|
<li>4</li>
|
|
<li>5</li>
|
|
<li>6</li>
|
|
<li>7</li>
|
|
<li>8</li>
|
|
<li>9</li>
|
|
<li>10</li>
|
|
</ul>
|
|
|
|
|
|
<div class="insert">哈哈哈哈哈</div>
|
|
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|
|
|