-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomepage.html
More file actions
120 lines (99 loc) · 4.78 KB
/
homepage.html
File metadata and controls
120 lines (99 loc) · 4.78 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!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="search.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="#">首页</a>
<a href="#">链接</a>
<a href="#">链接</a>
</div>
<!-- <div class="search">
<form action="#" method="post">
<img src="search.jpg" alt="">
<input type="text" name="condition" placeholder="请输入搜索条件">
<input type="submit" value="搜索">
</form>
</div> -->
<div class="row">
<div class="leftcolumn">
<div class="left_card", style="height: 210px">
<div class="img"><h3>文章特色图片</h3></div>
<a href="#"><h2>文章一</h2></a>
<p>文章摘要...</p>
<div class="btn", style="vertical-align: middle;"><a href="article.html">阅读更多</a></div>
</div>
<div class="left_card", style="height: 210px">
<div class="img"><h3>文章特色图片</h3></div>
<a href="#"><h2>文章二</h2></a>
<p>文章摘要...</p>
<div class="btn", style="vertical-align: middle;"><a href="article.html">阅读更多</a></div>
</div>
<div class="left_card", style="height: 210px">
<div class="img"><h3>文章特色图片</h3></div>
<a href="#"><h2>文章三</h2></a>
<p>文章摘要...</p>
<div class="btn", style="vertical-align: middle;"><a href="article.html">阅读更多</a></div>
</div>
<div class="left_card", style="height: 210px">
<div class="img"><h3>文章特色图片</h3></div>
<a href="#"><h2>文章四</h2></a>
<p>文章摘要...</p>
<div class="btn", style="vertical-align: middle;"><a href="article.html">阅读更多</a></div>
</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>