qinlong-js/zhihu.html

30 lines
561 B
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<title>展示 知乎 数据</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
h2 {
color: #333;
}
p {
line-height: 1.6;
}
.popularity {
color: #888;
}
</style>
</head>
<body>
<div>
<h2><a href="${item.link}">${item.shortTitle}</a></h2>
<p>热度:${item.popularity}</p>
<p class="popularity">${item.title}</p>
</div>
</body>
</html>