-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharticle.html
More file actions
83 lines (68 loc) · 3.56 KB
/
article.html
File metadata and controls
83 lines (68 loc) · 3.56 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>LStar——文章页框架</title>
<link rel="stylesheet" href="background.css">
<link rel="stylesheet" href="header.css">
<link rel="stylesheet" href="dropdown.css">
<link rel="stylesheet" href="button.css">
<link rel="stylesheet" href="leftcolumn.css">
<link rel="stylesheet" href="rightcolumn.css">
<link rel="stylesheet" href="row.css">
<link rel="stylesheet" href="footer.css">
<link rel="stylesheet" href="responsive_layout.css">
</head>
<body>
<div class="pic">
<h3>文章特色图片</h3>
</div>
<div class="header">
<h1>文章标题</h1>
<h3>文章摘要</h3>
</div>
<div class="dropdown">
<button class="dropbtn">下拉菜单</button>
<div class="dropdown-content">
<a href="homepage.html">首页</a>
<a href="register.html">注册</a>
<a href="login.html">登录</a>
</div>
</div>
<div class="topnav">
<a href="homepage.html">首页</a>
<a href="#">链接</a>
<a href="#">链接</a>
</div>
<div class="row">
<div class="leftcolumn">
<div class="left_card">文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文<br>文章正文</div>
</div>
<div class="rightcolumn">
<div class="right_card", style="height: 240px;">
<h2>关于我</h2>
<div class="img", style="width: 100px; height: 100px;"><h3>个人头像</h3></div>
<p, style="padding-left: 5%;">个人简介...</p>
</div>
<div class="right_card", style="height: 180px;">
<h2>联系我</h2>
<p>· 联系方式一:</p>
<p>· 联系方式二:</p>
<p>· 联系方式三:</p>
</div>
<div class="right_card", style="height:280px">
<h2>热门文章</h2>
<div class="img" style="display: block; float: left; width: 30px; height: 30px;"><h3>图1</h3></div>
<a href="article.html", style="display: block;">文章标题(可点击)</a>
<!-- <div class="img" style="display: block; float: left; width: 30px; height: 30px;"><h3>图2</h3></div> -->
<!-- <a href="#", style="display: block;">文章标题(可点击)</a> -->
<!-- <div class="img" style="display: block; float: left; width: 30px; height: 30px;"><h3>图3</h3></div> -->
<!-- <a href="#", style="display: block;">文章标题(可点击)</a> -->
</div>
</div>
</div>
<div class="footer">
<h2>©2022 xxx的网站保留所有权利</h2>
</div>
</body>
</html>