-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSample1.html
41 lines (41 loc) · 1.08 KB
/
Sample1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>The blah</title>
<link rel="stylesheet" type="text/css"href="main.css">
</head>
<body>
<div class="header">
<img src="blah.png">
<ul class="nav">
<li> <a href="#"> Home</a></li>
<li> <a href="#"> Site</a></li>
<li> <a href="#"> Others</a></li>
</ul>
</div>
<div class="main-content">
<h2>Article</h2>
<ul class="article">
<li>
<img src="0001.jpg" width="100" height="90">
<h3>The balt</h3>
<p>Say something</p>
</li>
<li>
<img src="0002.jpg" width="100" height="90">
<h3>The balt</h3>
<p>Say something</p>
</li>
<li>
<img src="0003.jpg" width="100" height="90">
<h3>The balt</h3>
<p>Say something</p>
</li>
</ul>
</div>
<div class="footer">
<p>©tanzhiyong</p>
</div>
</body>
</html>